Skip to content

Instantly share code, notes, and snippets.

@ostearn
Created May 6, 2017 17:40
Show Gist options
  • Save ostearn/a17e72a959dd1e9e5f0870b396216602 to your computer and use it in GitHub Desktop.
Save ostearn/a17e72a959dd1e9e5f0870b396216602 to your computer and use it in GitHub Desktop.
(function() {
var data = String(window.location);
var isebay = data.indexOf("ebay");
var isquery = data.indexOf("?");
var ipg = data.indexOf("&_ipg=200");
if(isebay != -1 & isquery != -1 & ipg != -1){
$('.prRange').parents('.lvresult').hide();
console.log('All those annoying variable listings have been removed.');
} else if(isebay != -1 & isquery != -1 & ipg == -1){
window.href= data +"&_ipg=200";
$('.prRange').parents('.lvresult').hide();
console.log('All those annoying variable listings have been removed.');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment