Reddit invert all colours - old school version dark mode minimal

Reddit invert all colours -old school version dark mode minimal

当前为 2023-06-15 提交的版本,查看 最新版本

// ==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.3
// @run-at document-end
// @license MIT
// @grant       GM_addStyle
// ==/UserScript==


// Main - CSS hides two classes - video add box, and call to action box under it. - also social media

 
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '      html{ filter: invert(1)hue-rotate(180deg); } img{max-width:25px;}   ';



document.getElementsByTagName('head')[0].appendChild(style);