// ==UserScript== // @name 移除蝦皮廣告 // @version 1.0.2 // @description 移除蝦皮廣告,移除那些容易誤點的廣告,避免使用者誤點商品。 // @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 // @downloadURL none // ==/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(); }); const $List = $('.OLut87'); $List.each(function() { const $text = $(this).find('.Y8EPKl'); if ($text.text().indexOf('Ad') !== -1 || $text.text().indexOf('廣告') !== -1) { $(this).hide(); } }); }); window.addEventListener('locationchange', removead); })();