Dark 3dbooru

Will darken the 3dbooru site

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

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

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

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

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

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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.

(I already have a user style manager, let me install it!)

// ==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 }");