X Marks the Scot background remove minimalist

X Marks the Scot background remove minimalist xmarksthescot.com

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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.6
// @run-at document-end
// @license MIT
// @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 ;}.newcontent_textcontrol:hover {    background: #264960 !important; }      ';



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