Skip to content

Instantly share code, notes, and snippets.

@michaelneu
Created April 9, 2020 15:57
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 michaelneu/f0ca7e6c672160f46971811c53aa7cf6 to your computer and use it in GitHub Desktop.
Save michaelneu/f0ca7e6c672160f46971811c53aa7cf6 to your computer and use it in GitHub Desktop.
A Chrome extension to remove the menubar from the Slack webapp.
.p-client.p-client--ia-top-nav {
grid-template-rows: 0 auto min-content;
}
.p-client.p-client--ia-top-nav > .p-top_nav {
opacity: 0.1;
}
.p-client.p-client--ia-top-nav > .p-top_nav:hover {
opacity: 1;
transition: opacity 0.2s;
}
{
"manifest_version": 2,
"name": "hide-slack-menubar",
"description": "Hides Slack's new menu bar in the browser",
"version": "1.0",
"content_scripts": [
{
"matches": ["https://app.slack.com/*"],
"css": ["hide.css"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment