NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace https://openuserjs.org/users/Faith79 // @name WhatsApp Web Dark Mode // @description Activates the dark mode in WhatsWeb // @author Faith79 // @version 1.4 // @copyright 2019, Faith79 // @license MIT // @updateURL https://openuserjs.org/meta/Faith79/WhatsApp_Web_Dark_Mode.meta.js // @downloadURL https://openuserjs.org/install/Faith79/WhatsApp_Web_Dark_Mode.user.js // @match https://web.whatsapp.com/* // @grant none // ==/UserScript== (function () { var startup = setInterval(run, 1000); })(); function run(){ var id = document.getElementById("startup"); if(!id){ document.body.className += " dark"; clearInterval(startup); } }