compressjpeg.com dark theme night mode compress jpeg jpg

compressjpeg.com dark theme night mode compress jpeg jpg - simple dark theme

当前为 2018-08-17 提交的版本,查看 最新版本

// ==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.1
// @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*/}  #header-right {     display: none !important;}       ';

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