eBay Seller Blacklist

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

< Commentaires sur eBay Seller Blacklist

Avis: Bon - le script fonctionne correctement

§
Posté le: 02/04/2025

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

§
Posté le: 02/04/2025

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

xdpirateAuteur
§
Posté le: 02/04/2025

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.

§
Posté le: 02/04/2025

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");
§
Posté le: 02/04/2025

Script works natively with latest update

Poster une réponse

Connectez-vous pour poster une réponse.