Dark Theme For All Websites

try to take over the world!

Fra og med 28.12.2018. Se den nyeste version.

// ==UserScript==
// @name         Dark Theme For All Websites
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  try to take over the world!
// @author       You
// @match        *://*/*
// @exclude      *://www.youtube.com*
// @exclude      *://*tbm=isch*
// @exclude      *://cashiergtj.alipay.com*
// @exclude      *://mail.google.com*
// @supportURL   https://github.com/admin-ll55/
// @grant        none
// ==/UserScript==
var style = document.createElement('style');style.type = 'text/css';style.innerHTML = `* {  background-color: black !important;  color: white !important;}`;document.getElementsByTagName('head')[0].appendChild(style);