Search EX

Quickly move favourite from nhentai back to e-hentai/exhentai.

As of 2018-09-27. See the latest version.

// ==UserScript==
// @name           Search EX
// @description    Quickly move favourite from nhentai back to e-hentai/exhentai.
// @author         Hen Tie
// @homepage       http://hen-tie.tumblr.com/
// @namespace      https://greasyfork.org/en/users/8336
// @include        https://nhentai.net/favorites/*
// @grant          none
// @require        https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js
// @icon           https://i.imgur.com/8bq1S92.jpg
// @version        1.0
// ==/UserScript==

$(function(){
	var galTitle = []
	var url = "https://exhentai.org/?f_search="
	$('.gallery-favorite .caption').each(function(){
		var str = $(this).text().toLowerCase()
		str = str.replace(/ \w{1,2}\b/igm,'') //remove one or two character keywords
		str = str.replace(/[\][()|\-~."?+*%:$]/igm,'') //remove search operators/decorative characters
		galTitle.push(str)
	})
	$('.remove-button').each(function(i) {
		$(this).after('<button class="btn btn-primary btn-thin" title="Search on Ex-Hentai"><a href="'+url+galTitle[i]+'"><i class="fa fa-external-link"></i></a></button>');
	})
})