NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Dark Whatsapp Web // @namespace http://tampermonkey.net/ // @version 0.1 // @description Automatically sets whatsapp web to be dark // @author tApja // @license MIT // @match https://web.whatsapp.com/ // @grant none // ==/UserScript== var r = setInterval(x, 1000); function x() { document.getElementsByTagName('body')[0].className = "web dark"; if (document.getElementsByTagName('html')[0].className != "no-js") { clearInterval(r); } };