eBay Seller Blacklist

Adds a blacklist for sellers on eBay that will emphasize or remove results from blacklisted sellers

< 脚本eBay Seller Blacklist的反馈

评价:好评 - 脚本运行良好

§
发表于:2025-04-02

Had to extend the website this scripts loads (`de` variant of ebay)

But the blacklisting doesn't actually work
It shows when I click on the item but the item itself is not filtered / hidden from the search result

§
发表于:2025-04-02

The span.s-item__seller-info-text element doesn't seem to exist (anymore) Which is why it cannot find the name of the seller

xdpirate作者
§
发表于:2025-04-02

Should work now, try v0.4. HTML classes changed and are now also different across different eBay domains, which I've accounted for in the script. I also added .de support natively.

§
发表于:2025-04-02

Fixed it by replacing the sellerElements with:

let sellerElements = document.querySelectorAll("div.su-card-container__attributes__secondary > div.s-card__attribute-row > span");

and the list element search with this:

sellerElements[i].closest("li[id^='item']").classList.add("hidden");
§
发表于:2025-04-02

Script works natively with latest update

发表回复

登录以发表回复。