Skip to content

Instantly share code, notes, and snippets.

@SeanMcP
Created January 25, 2023 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SeanMcP/1df72abeab92b732da61a7a83f12a3d9 to your computer and use it in GitHub Desktop.
Save SeanMcP/1df72abeab92b732da61a7a83f12a3d9 to your computer and use it in GitHub Desktop.
Make Zoho Mail's UI a little nicer
// ==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