Quran.com Black Background

Change background color to AMOLED black on Quran.com

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