X Marks the Scot background remove minimalist

X Marks the Scot background remove minimalist xmarksthescot.com

当前为 2017-11-27 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        X Marks the Scot background remove minimalist
// @namespace   english
// @description X Marks the Scot background remove minimalist xmarksthescot.com
// @include     http*://*xmarksthescot.com*
// @version     1.2
// @run-at document-start
// @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 = '       #header{display: none    !important ;}/*\n*/.above_body{    padding-top: 2em  !important ;background: none !important ;}/*\n*/html{    background: #ccc !important ;}/*\n*//*\n*/.navtabs {/*\n*/background: #457f9f !important ; /*\n*/}/*\n*//*\n*/.toolsmenu {/*\n*/background: #255372 !important ;}/*\n*//*\n*/.threadlisthead { /*\n*/border: 1px solid #333a3f !important ;/*\n*/background: #1E425A !important ;}/*\n*//*\n*/.newcontent_textcontrol {/*\n*/background: #1D5E89 !important ;/*\n*/_background-image: none !important ;/*\n*/-moz-border-radius: 3px !important ;/*\n*/-webkit-border-radius: 3px !important ;/*\n*/border-radius: 3px !important ;}/*\n*//*\n*//*\n*/.forum_info .blockhead { /*\n*/color: rgb(255,255,255) !important ;/*\n*/background: #23455C !important ;/*\n*/_background-image: none !important ;/*\n*/border: 1px solid #323232 !important ; }/*\n*//*\n*/.navtabs li.selected a.navtab {/*\n*/color: #ececec !important ;/*\n*/background: #2f3336 !important ;/*\n*/_background-image: none !important ;/*\n*/position: relative !important ;/*\n*/top: -4px !important ;/*\n*/padding-top: 4px !important ;/*\n*/z-index: 10 !important ;/*\n*/}/*\n*//*\n*/.navtabs li a.navtab { /*\n*/display: block !important ;/*\n*/background: #4f6977 !important ;/*\n*/}/*\n*//*\n*/.blockhead {/*\n*//*\n*/background: #263A47 !important ;/*\n*/_background-image: none !important ;/*\n*/padding: 4px 10px 4px 10px !important ;/*\n*/border: 1px solid #353738 !important ;}      ';



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