Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rolandas-valantinas/730b83f69f07c6cd8a50ee2ce21ca97e to your computer and use it in GitHub Desktop.
Save rolandas-valantinas/730b83f69f07c6cd8a50ee2ce21ca97e to your computer and use it in GitHub Desktop.
Remove 'collection only' listings from eBay search
javascript: (function() {
var shipSpan = document.getElementsByClassName("ship");
for (var i = 0; i < shipSpan.length; i++) {
if (shipSpan[i].innerHTML.indexOf("Collection only: Free") != -1) {
shipSpan[i].parentNode.parentNode.parentNode.remove();
}
}
})();
javascript:(function(){var shipSpan=document.getElementsByClassName("ship");for(var i=0;i<shipSpan.length;i++){if(shipSpan[i].innerHTML.indexOf("Collection only: Free")!=-1){shipSpan[i].parentNode.parentNode.parentNode.remove();}}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment