Ebay - Remove listings with multiple prices

Removes those annoying price range listings from search results

< Feedback on Ebay - Remove listings with multiple prices

Review: चांगली - स्क्रिप्ट चालते

§
पोस्ट केले: 2018-09-08

add ebay.de support

// ==UserScript== // @name Ebay - Remove listings with multiple prices // @namespace ebay_remove_price_range_listings // @description Removes those annoying price range listings from search results // @include https://www.ebay.com/sch/i.html* // @include https://www.ebay.de/sch/i.html* // @author Jous // @grant none // @license Unlicense; http://unlicense.org/ // @version 1.0.1 // ==/UserScript== // hiro added support for ebay.de

var tags = document.querySelectorAll(".DEFAULT"); var count = 0; Array.prototype.forEach.call(tags, function(elem) { elem.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.removeChild(elem.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode); count++; });

tags = document.querySelectorAll(".prRange"); count = 0; Array.prototype.forEach.call(tags, function(elem) { elem.parentNode.parentNode.parentNode.parentNode.parentNode.removeChild(elem.parentNode.parentNode.parentNode.parentNode); count++; });

document.body.innerHTML += '

'; infoMsg = document.getElementById("removeThatCrap"); infoMsg.innerText = count + " price range listings \nwere removed. (spam choices)"; infoMsg.style.position = "absolute"; infoMsg.style.top = "40px"; infoMsg.style.left = "10px"; infoMsg.style.padding = "10px"; infoMsg.style.backgroundColor = "#ccc";

§
पोस्ट केले: 2018-09-20

thanks for incorporating this, and then making it a lot better :)

उत्तर पोस्ट करा

उत्तर पोस्ट करण्यासाठी साइन इन करा.