thez3ro / Whatsie

// ==UserScript==
// @name        Whatsie
// @namespace   whatsie.thezero.org
// @description Whatsie Dark Theme
// @license     GPL-3.0
// @include     https://web.whatsapp.com/*
// @include     http://web.whatsapp.com/*
// @version     1
// @grant       none
// ==/UserScript==

// create element
function ce(n) { return document.createElement(n); } // end of function

// add style
function addStyle(css) {
    var head = document.head || document.getElementsByTagName('head')[0];
    if (head) {
        var style = ce("style");
        style.type = "text/css";
        style.appendChild(document.createTextNode(css));
        head.appendChild(style);
    } // end if
} // end of function