Dark 3dbooru

Will darken the 3dbooru site

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Dark 3dbooru
// @namespace    none
// @version      0.201703162058
// @description  Will darken the 3dbooru site
// @author       mysteriousLynx
// @include      *://behoimi.org/*
// @grant        GM_addStyle
// @run-at       document-start
// ==/UserScript==

GM_addStyle("/******************************************** * Made by mysteriousLynx * * Last updated on Thrusday, March 16, 2017 * ********************************************/ /* Changes how the links look because they look too similar to non-links */ a:link { color: #00E6FF } a:visited { color: #00737F } /* Main darkener */ html, body { background: #101010; color: white } /* Darkens the logo */ div#static-index h1 a img, h2#site-title a img, div#static-more h2 a img { height: 0px; width: 0px; background: url(http://i.imgur.com/6viCvlf.png) no-repeat; padding-bottom: 113px; padding-right: 320px } /* Makes blockquotes easier to read */ blockquote p { color: #101010 } /* Changes table titles and page headers for the wiki and makes the table text white */ div.wiki>h2.title, table.highlightable th { color: #B966FF } table.form th { color: white } /* Change the status notice background */ div.status-notice { background: #333333 }");