GitHub Black Background

Change background color to AMOLED black on GitHub

  1. // ==UserScript==
  2. // @name GitHub Black Background
  3. // @namespace https://github.com/AbdurazaaqMohammed
  4. // @version 1.0.1
  5. // @author Abdurazaaq Mohammed
  6. // @description Change background color to AMOLED black on GitHub
  7. // @match https://github.com/*
  8. // @homepage https://github.com/AbdurazaaqMohammed/userscripts
  9. // @license The Unlicense
  10. // @supportURL https://github.com/AbdurazaaqMohammed/userscripts/issues
  11. // @run-at document-start
  12. // @grant none
  13. // ==/UserScript==
  14. (function() {
  15. 'use strict';
  16. (document.head || document.documentElement).appendChild(document.createElement('style')).textContent = 'div:not(button div) { background-color: black !important; }';
  17. })();