iAnuj / 9gag.com Night Mode Pure Black

// ==UserScript==
// @name         9gag.com Night Mode Pure Black
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       iAnuj
// @match        https://9gag.com/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.body.className += ' ' + 'background-black';

    GM_addStyle(' .background-black { color: #999 !important; } ');
    GM_addStyle(' section#list-view-2 h2 a { color: #eee; } ');
    GM_addStyle(' section#list-view-2 article { border-top-color: #222; } ');
    GM_addStyle(' .main-wrap { float: none; margin-left: auto; margin-right: auto; } section#sidebar { display: none; }');
    GM_addStyle(' .CS3 { padding: 5px 20px !important; color: #222; background-color: #f5f5f5; border-radius: 2px; } ');
    GM_addStyle(' .post-afterbar-a.in-post-top { background-color: #000 !important; } ');
    GM_addStyle(' .section-nav { background-color: #333 !important; } ');
})();