Greasy Fork is available in English.
SearchBox for Family
이 스크립트는 직접 설치하는 용도가 아닙니다. 다른 스크립트에서 메타 지시문 // @require https://update.greasyfork.org/scripts/10393/56659/Search%20Liste%20engine.js을(를) 사용하여 포함하는 라이브러리입니다.
// ==UserScript==
// @name Search Liste engine
// @version 0.2
// @description SearchBox for Family
// @author Gohan89
// @match http://www.marchofhistory.com/*
// @grant none
// ==/UserScript==
jQuery.expr[":"].Contains = function(obj,index,meta) {
return jQuery(obj).text().toUpperCase().indexOf(meta[3].toUpperCase()) >= 0;
};
$(document).on("click", ".tabsMenu.ui-tabs-anchor", function(){
$("div.searchbox").remove();
$("div.listingStrategie_wrapper").prepend("<div class='searchbox'><input name='search'></div>");
});