Greasy Fork is available in English.
Attempts to clear up unwanted items in your ebay search results
< 脚本 ebay Country Filter 的反馈
Ebay has once again changed the code for listings from "s-item" to "s-card", breaking any script that looks for that.
To fix it in this script you just need to change one entry on line 114 from:
$("li.sresult").length > 0 ? $("li.sresult") : $("li.s-item");
to:
$("li.sresult").length > 0 ? $("li.sresult") : $("li.s-card");
登录以发布留言。
Ebay has once again changed the code for listings from "s-item" to "s-card", breaking any script that looks for that.
To fix it in this script you just need to change one entry on line 114 from:
$("li.sresult").length > 0 ? $("li.sresult") : $("li.s-item");to:
$("li.sresult").length > 0 ? $("li.sresult") : $("li.s-card");