Last active
January 18, 2023 21:31
-
-
Save SMUsamaShah/be0cebf3aea4db332e7e5119d0ec94c9 to your computer and use it in GitHub Desktop.
hide collection only items from ebay search results
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for (const elm of [...document.querySelectorAll(".s-item")]) {if (elm.querySelector(".s-item__info > .s-item__details > .s-item__detail > .s-item__shipping") == null) elm.style.display="none"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment