reddit default theme

Disable reddit custom subreddits themes, fallback to the default one.

目前為 2017-04-29 提交的版本,檢視 最新版本

// ==UserScript==
// @name        reddit default theme
// @description Disable reddit custom subreddits themes, fallback to the default one.
// @namespace   https://gf.qytechs.cn/scripts/29326
// @include     http://www.reddit.com/*
// @include     https://www.reddit.com/*
// @include     http://np.reddit.com/*
// @include     https://np.reddit.com/*
// @version     1
// @grant       none
// ==/UserScript==
'use strict'
var links = document.head.getElementsByTagName('link')
for (var i = 0; i < links.length; ++i) {
  if ((links[i].getAttribute('rel') === 'stylesheet') && (links[i].getAttribute('title') === 'applied_subreddit_stylesheet')) {
    links[i].removeAttribute('href')
  }
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址