Redirects gmail links to html
// ==UserScript==
// @name Redirect Gmail to HTML Version
// @namespace Violentmonkey Scripts
// @match https://mail.google.com/mail/u/0/
// @grant none
// @version 1.0
// @author -
// @description Redirects gmail links to html
// @license MIT
// ==/UserScript==
(function () {
window.location.href = 'https://mail.google.com/mail/u/0/h' + location.pathname;
})();