NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name WhatsApp Dark // @namespace https://openuserjs.org/users/kynrai // @version 0.1 // @copyright 2020, kynrai (https://openuserjs.org/users/kynrai) // @description Apply dark mode to WhatsApp // @author Steven Lee // @match https://web.whatsapp.com/ // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; document.body.classList.add("dark"); })();