Created
January 29, 2022 09:52
-
-
Save khlam/a5361349df2e77954558dcbd65517e7f to your computer and use it in GitHub Desktop.
userscript / greasemonkey / violentmonkey script to removes subreddit custom css for old.reddit.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name subreddit_custom_css_block | |
| // @version 0.0 | |
| // @description Removes subreddit custom css for old.reddit.com | |
| // @author khlam | |
| // @match http://*.reddit.com/* | |
| // @match https://*.reddit.com/* | |
| // @require https://gist.githubusercontent.com/khlam/f85ee658005a45a99ba0147124c09c38/raw/704f92f52d7c4c1ed8e71f2c9311b46c2e6ea3cc/jQuery.v3.6.0 | |
| /* globals jQuery, $ */ | |
| // @run-at document-end | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| $('link[rel=stylesheet][title="applied_subreddit_stylesheet"]').remove() | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment