Sleazy Fork is available in English.

g.hentai button to search only no translated files

Create a button to search only no translated files

Versión del día 12/10/2014. Echa un vistazo a la versión más reciente.

// ==UserScript==
// @name       g.hentai button to search only no translated files
// @namespace  namespace
// @version    0.2
// @description  Create a button to search only no translated files
// @require http://code.jquery.com/jquery-2.1.1.min.js
// @include    http://g.e-hentai.org/*
// @copyright  2014+, yoyoi
// ==/UserScript==

//create form 
frm = $("<input>");
frm
  .attr("type", "button")
  .attr("name", "no_translated")
  .attr("value", "no translated")
  .attr("class", "stdbtn")
  .attr('onclick', "this.className='stdbtn_clicked'");
$("input[name=f_apply]").after(frm);

// click function
frm.click(function() {
  search_val = $("input[name=f_search]").val();
 
  if(!search_val.match(/(-translated)/)) {
    value = search_val + " -translated";
    $("input[name=f_search]").val(value);
  } 
  
  $("input[name=f_apply]").click();
    
});