Skip to content

Instantly share code, notes, and snippets.

@aholmes
Created January 12, 2016 23:21
Show Gist options
  • Save aholmes/098217dbe5a2811da48e to your computer and use it in GitHub Desktop.
Save aholmes/098217dbe5a2811da48e to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Remove Custom Subreddit Themes
// @namespace http://aaronholmes.net/
// @version 0.1
// @description Remove custom subreddit themes from every subreddit
// @author Aaron Holmes
// @match https://www.reddit.com/r/*
// @grant none
// ==/UserScript==
/* jshint -W097 */
'use strict';
var stylesheet = document.querySelector('[title="applied_subreddit_stylesheet"]');
if (stylesheet !== null)
{
stylesheet.remove();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment