您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Force Dark mode for reddit by setting theme-color meta property to #1a1a1a
// ==UserScript== // @name Dark Theme for Reddit Chrome App // @namespace https://gist.github.com/jfroment/29cfc945a207b530046d6e1b373d32a6 // @version 0.1 // @description Force Dark mode for reddit by setting theme-color meta property to #1a1a1a // @author Jean Froment // @match https://*.reddit.com/ // @grant none // ==/UserScript== (function() { 'use strict'; document.querySelector("[name='theme-color']").remove(); var m = document.createElement('meta'); m.name = 'theme-color'; m.content = '#1a1a1a'; document.head.appendChild(m); })();