Greasy Fork is available in English.
蝦皮搜尋結果的前幾個商品廣告封鎖
当前为
// ==UserScript==
// @name 蝦皮廣告封鎖器
// @namespace http://greasyfork.icu/scripts/437545
// @version 1.4.0
// @description 蝦皮搜尋結果的前幾個商品廣告封鎖
// @author fmnijk
// @match https://shopee.tw/*
// @icon https://www.google.com/s2/favicons?domain=shopee.tw
// @grant GM_addStyle
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const styles = String.raw`
/*隱藏蝦皮搜尋結果廣告商品*/
.col-xs-2-4.shopee-search-item-result__item:has([data-sqe="ad"]){
display: none !important;
}
`
GM_addStyle(styles);
/*
function onDomChange(cb) {
new MutationObserver(() => setTimeout(cb, 50)).observe(document.body, { childList: true });
}
function blockAd() {
GM_addStyle(styles);
}
onDomChange(blockAd);
*/
})();