Skip to content

Instantly share code, notes, and snippets.

@khlam
Created January 29, 2022 09:52
Show Gist options
  • Select an option

  • Save khlam/a5361349df2e77954558dcbd65517e7f to your computer and use it in GitHub Desktop.

Select an option

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
// ==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