Greasy Fork

Greasy Fork is available in English.

Hide international ebay listings

Hides items listed under ebay "items found from eBay international sellers" and "More items related to"

目前为 2015-09-13 提交的版本,查看 最新版本

// ==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
// ==/UserScript==

setInterval(function(){ 
  $("#ListViewInner > li").slice($("#ListViewInner > li").index($("#ListViewInner > li").not($("[id^=item]"))[0])+1).hide()
}, 1000);