Search Liste engine

SearchBox for Family

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greatest.deepsurf.us/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>");
});