您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Reddit invert all colours -old school version dark mode minimal
// ==UserScript== // @name Reddit invert all colours - old school version dark mode minimal // @namespace english // @description Reddit invert all colours -old school version dark mode minimal // @include http*://*reddit.com* // @version 1.11 // @run-at document-end // @license MIT // @grant GM_addStyle // ==/UserScript== // HIDE INSTALL APP SPLASH //https://greasyfork.org/en/scripts/466915-reddit-mobile-app-nag-remover // https://greasyfork.org/en/scripts/456374-hide-reddit-install-app-notifications var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = ' @media only screen and (max-width: 1500px) { .side{display:none;} } html{ filter: invert(1)hue-rotate(180deg); } img{max-width:25px;height:auto !important ;} .arrow.up { background-color: #ad0a0a; }.arrow.upmod { background-color: #0f4627; }.arrow.down { background-color: #c6a180; } html body #header-img,.TopNav__promoButton,.premium-banner-outer,#redesign-beta-optin-btn,.premium-banner-outer,#siteTable div.promoted {display:none !important ;} '; document.getElementsByTagName('head')[0].appendChild(style);