Multi Simple Website Dark Theme Night Mode - normal sites

Multi Website Dark Theme Night Mode Simple

当前为 2018-08-28 提交的版本,查看 最新版本

// ==UserScript==
// @name        Multi Simple Website Dark Theme Night Mode - normal sites 
// @namespace   english
// @description Multi Website Dark Theme Night Mode Simple 
// @include     http*://*westpac.com.au*
// @include     http*://*ing.com.au*
// @include     http*://*ubank.com.au*
// @include     http*://*guerrillamail.com*
// @include     http*://*namecheap.com*
// @include     http*://*meetup.com*
// @include     http*://*brainyquote.com*
// @version     1.4
// @run-at document-start
// @grant       GM_addStyle
// ==/UserScript==

// Main - Collapse the Greasy Fork Header

var style = document.createElement('style');
style.type = 'text/css';

style.innerHTML = '        body{ filter: invert(100%)hue-rotate(180deg); }       ';

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