Last active
June 5, 2020 10:13
-
-
Save MattJeanes/7270f5c7c30a2f60aab4b553ff6d3513 to your computer and use it in GitHub Desktop.
Enables the beta WhatsApp dark theme (userscript)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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