您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Panthur Hosting Australia Dark Mode Night Theme - simple grey red
当前为
// ==UserScript== // @name Panthur Hosting Australia Dark Mode Night Theme // @namespace english // @description Panthur Hosting Australia Dark Mode Night Theme - simple grey red // @include http*://*members.panthur.com.au * // @version 1.1 // @run-at document-start // @grant GM_addStyle // ==/UserScript== var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = ' .page_main_container { /*\n*/ background-color: #292929 !important;/*\n*/}.white_block {/*\n*/ /*\n*/ background-color: #b9b9b9;/*\n*/ /*\n*/}.form-group input:not([type=checkbox]):not([type=radio]), .form-group select, .form-group .form-control {/*\n*/ /*\n*/ color: #333333 !important;/*\n*/ /*\n*/ background-color: gainsboro !important;/*\n*/ border: 1px solid #797979 !important;/*\n*/ /*\n*/}#searchresults div:last-of-type {/*\n*/ border-bottom: 1px solid #1d1d1d78;/*\n*/}#searchresults {/*\n*/ /*\n*/ background-color: #a2a2a2;/*\n*/ border-left: 1px solid #cccccc40;/*\n*/ border-right: 1px solid #cccccc36;/*\n*/ /*\n*/}.no_records {/*\n*/ border: 1px solid #676767;/*\n*/ background: #a2a2a2;/*\n*/ /*\n*/} '; document.getElementsByTagName('head')[0].appendChild(style);