// ==UserScript== // @name Hide international ebay listings // @namespace pauls // @include http://www.ebay.com/* // @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js // @description Hides items listed under ebay "items found from eBay international sellers" and "More items related to" // @version 3 // @grant none // @downloadURL none // ==/UserScript== setInterval(function(){ $("#ListViewInner > li").slice($("#ListViewInner > li").index($("#ListViewInner > li").not($("[id^=item]"))[0])+1).hide() }, 1000);