您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork Dark Mode Night Theme - simple grey red
// ==UserScript== // @name Greasy Fork Dark Mode Night Theme // @namespace english // @description Greasy Fork Dark Mode Night Theme - simple grey red // @include http*://*greasyfork.org* // @version 2.5 // @run-at document-end // @grant GM_addStyle // ==/UserScript== var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = ' #main-header {/*\n*/ background-image: linear-gradient(#000000, #343434) !important;/*\n*/}body { /*\n*/ background-color: #5a5a5a;/*\n*/}/*\n*/.script-list, .user-list, .text-content, .discussion-list {/*\n*/ /*\n*/ background-color: #d7d7d7; /*\n*/}/*\n*//*\n*/.user-content {/*\n*/ background: linear-gradient(to right,#dbdbdb,#c9c9c9 1em);/*\n*/ border-left: 2px solid #F2E5E5; /*\n*/}.list-option-group ul { /*\n*/ box-shadow: 0 0 5px #1e1e1e; /*\n*/ background-color: #bdbdbd;/*\n*/}/*\n*/header h3{ color: #e9e9e9;}/*\n*/#script-list-option-groups{ color: #ccc;}/*\n*/#script-list-option-groups li { color: #343434;}/*\n*/ #control-panel header h3{color:#262626} #script-info { background-color: #d5d5d5; } '; document.getElementsByTagName('head')[0].appendChild(style);