ddys_ad.js

广告隐藏

目前为 2023-01-27 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name ddys_ad.js
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description 广告隐藏
  6. // @author wuuconix
  7. // @match https://ddys.art/*
  8. // @match https://www.fantuanhd.com/*
  9. // @match https://api.goodjson.top/*
  10. // @icon https://www.google.com/s2/favicons?sz=64&domain=ddys.tv
  11. // @grant none
  12. // @license MIT
  13. // ==/UserScript==
  14.  
  15. const style = document.createElement("style")
  16. const map = {
  17. "ddys.art": ["#sajdhfbjwhe", "#iaujwnefhw", "#fkasjgf"],
  18. "www.fantuanhd.com": ["#t-img-box", "#HMRichBox"],
  19. "api.goodjson.top": ["#adv_wrap_hh"]
  20. }
  21. style.innerHTML = `${map[window.location.host].join(",")} {
  22. display: none !important;
  23. }`
  24. document.head.appendChild(style)