Hide ebay collection listings

Remove ebay listings that have "Free collection in person"

当前为 2024-02-06 提交的版本,查看 最新版本

// ==UserScript==
// @name         Hide ebay collection listings
// @author       Rolandas Valantinas
// @description  Remove ebay listings that have "Free collection in person"
// @match        https://www.ebay.co.uk/sch*
// @namespace    https://gf.qytechs.cn/users/157178
// @supportURL   https://github.com/rolandas-valantinas/gists/issues
// @version      1.1
// ==/UserScript==

(function () {
    var interval = setInterval(hideListings, 2000);

    function hideListings() {
        var localDelivery = document.getElementsByClassName("s-item__localDelivery");

        for (var i = 0; i < localDelivery.length; i++) {
            localDelivery[i].parentNode.parentNode.parentNode.parentNode.parentNode.remove();
        }

        if (localDelivery.length === 0) {
            clearInterval(interval);
        }
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址