Skip to content

Instantly share code, notes, and snippets.

@MattJeanes
Last active June 5, 2020 10:13
Show Gist options
  • Save MattJeanes/7270f5c7c30a2f60aab4b553ff6d3513 to your computer and use it in GitHub Desktop.
Save MattJeanes/7270f5c7c30a2f60aab4b553ff6d3513 to your computer and use it in GitHub Desktop.
Enables the beta WhatsApp dark theme (userscript)
// ==UserScript==
// @name WhatsApp Web Dark
// @namespace https://mattjeanes.com
// @version 1.0
// @description Enables the beta WhatsApp dark theme
// @author Matt Jeanes
// @match https://web.whatsapp.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.addEventListener('load', function() {
document.body.classList.add("dark")
}, false);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment