Greasy Fork

Shopee ad blocker

移除 Shopee 網站上的廣告並隱藏頂部標頭

目前为 2023-09-04 提交的版本。查看 最新版本

// ==UserScript==
// @name         Shopee ad blocker
// @version      1.0.0
// @description  移除 Shopee 網站上的廣告並隱藏頂部標頭
// @author       Danny H.
// @match        https://shopee.tw/*
// @icon         https://freepngimg.com/save/109004-shopee-logo-free-transparent-image-hq/128x128
// @grant        GM_addStyle
// @license      MIT
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
// @namespace https://greasyfork.org/users/1166167
// ==/UserScript==

(function() {
    'use strict';

    // 定时器
    const removead = setInterval(() => {
        const $items = $('.col-xs-2-4.shopee-search-item-result__item');
        $items.each(function() {
            const $text = $(this).find('.F7xq8U');
            if ($text.text().indexOf('Ad') !== -1 || $text.text().indexOf('廣告') !== -1) {
                $(this).hide();
            }

    // 隱藏 shopee-header-section shopee-header-section--simple
    const $header = $('.shopee-header-section.shopee-header-section--simple');
    $header.remove();
        });
    });

    // 監聽頁面刷新
    window.addEventListener('locationchange', removead);

})();