蝦皮廣告封鎖器

蝦皮搜尋結果的前幾個商品廣告封鎖

  1. // ==UserScript==
  2. // @name 蝦皮廣告封鎖器
  3. // @namespace https://gf.qytechs.cn/scripts/437545
  4. // @version 2.0
  5. // @description 蝦皮搜尋結果的前幾個商品廣告封鎖
  6. // @author fmnijk
  7. // @match https://shopee.tw/*
  8. // @icon https://www.google.com/s2/favicons?domain=shopee.tw
  9. // @grant GM_addStyle
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. const styles = String.raw`
  16. /*隱藏蝦皮搜尋結果廣告商品*/
  17. .shopee-search-item-result__item:has(.absolute.bottom-0.right-0.z-30.flex.pr-1.pb-1 > .inline-block.px-1.py-0\.5.rounded-sm.bg-shopee-black26.text-xs\/3.capitalize.text-white.whitespace-nowrap) {
  18. display: none !important;
  19. }
  20. `
  21. GM_addStyle(styles);
  22. })();

QingJ © 2025

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