Last active
November 16, 2021 03:16
-
-
Save Seltyk/c79abbb3c4726d54774d88dae425d741 to your computer and use it in GitHub Desktop.
Loads the HTML view in GMail whether or not JavaScript is enabled
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 Gmail HTML view | |
// @match https://mail.google.com/mail/* | |
// @version 1 | |
// ==/UserScript== | |
url = window.location.href | |
if(!url.includes("/h/")) window.location.href = url + "/h/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment