🏠 Home 

Greasy Fork is available in English.

New Reddit Adblock

Remove ads on New Reddit


安装此脚本?
  1. // ==UserScript==
  2. // @name New Reddit Adblock
  3. // @namespace https://github.com/AbdurazaaqMohammed
  4. // @version 1.0.3
  5. // @description Remove ads on New Reddit
  6. // @author Abdurazaaq Mohammed
  7. // @homepage https://github.com/AbdurazaaqMohammed/userscripts
  8. // @supportURL https://github.com/AbdurazaaqMohammed/userscripts/issues
  9. // @match https://*.reddit.com/*
  10. // @exclude https://np.reddit.com/*
  11. // @exclude https://old.reddit.com/*
  12. // @license The Unlicense
  13. // @grant none
  14. // @run-at document-start
  15. // ==/UserScript==
  16. (function() {
  17. (document.head || document.documentElement).appendChild(document.createElement('style')).textContent = 'shreddit-ad-post, shreddit-dynamic-ad-link, shreddit-comments-page-ad, shreddit-comment-tree-ad { display: none !important; }';
  18. })();