Created
January 25, 2023 16:42
-
-
Save SeanMcP/1df72abeab92b732da61a7a83f12a3d9 to your computer and use it in GitHub Desktop.
Make Zoho Mail's UI a little nicer
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 Zoho Mail UI tweaks | |
// @namespace https://seanmcp.com | |
// @version 0.1 | |
// @description Make Zoho Mail's UI a little nicer | |
// @author You | |
// @match https://mail.zoho.com/zm/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=zoho.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const el = document.createElement('style') | |
el.dataset.id = "userscript"; | |
el.innerText = `/* Added by userscript */ | |
.zmRhsBar, | |
.zmCollapseLhs, | |
.zmChatBar, | |
#wmstoolbar, | |
#zmZHamburger | |
{ | |
display: none !important; | |
} | |
`; | |
document.head.appendChild(el); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment