Hide international ebay listings

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

// ==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     4
// @grant       none
// ==/UserScript==

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址