您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
compressjpeg.com dark theme night mode compress jpeg jpg - simple dark theme
当前为
// ==UserScript== // @name compressjpeg.com dark theme night mode compress jpeg jpg // @namespace english // @description compressjpeg.com dark theme night mode compress jpeg jpg - simple dark theme // @include http*://*compressjpeg.com* // @version 1.0 // @run-at document-start // @grant GM_addStyle // ==/UserScript== var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = ' /*\n*/html, body {/*\n*//*\n*/ font-family: Helvetica, Arial, sans-serif;/*\n*/ font-size: 15px;/*\n*/ background-color: #303030;/*\n*/ color: #cfcfcf;/*\n*//*\n*/}#main {/*\n*/ margin-bottom: 30px;/*\n*/ background-color: #666;/*\n*/ padding: 30px 0 0 0;/*\n*/ overflow: hidden;/*\n*/ border-top: 2px solid #47A4A5;/*\n*/ border-bottom: 2px solid #47A4A5;/*\n*/}.more-tools-title a:hover {/*\n*/ color: #efa5a5;/*\n*/}.more-tools-title a {/*\n*/ color: #a5e5ef;/*\n*/} '; document.getElementsByTagName('head')[0].appendChild(style);