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

返信を投稿

返信を投稿するにはログインしてください。