Dark Theme For All Websites

try to take over the world!

Versión del día 18/01/2019. Echa un vistazo a la versión más reciente.

// ==UserScript==
// @name         Dark Theme For All Websites
// @namespace    http://tampermonkey.net/
// @version      0.9
// @description  try to take over the world!
// @author       You
// @match        *://*/*
// @exclude      *://*.youtube.com*
// @exclude      *://*tbm=isch*
// @exclude      *://cashiergtj.alipay.com*
// @exclude      *://mail.google.com*
// @exclude      *://web.whatsapp.com*
// @exclude      *://*codepen*
// @supportURL   https://github.com/admin-ll55/
// @grant        none
// ==/UserScript==
var style = document.createElement('style');style.type = 'text/css';style.innerHTML = `html {-webkit-filter: invert(100%);-moz-filter: invert(100%);-o-filter: invert(100%);-ms-filter: invert(100%); }`;document.getElementsByTagName('body')[0].appendChild(style);