Created
April 9, 2020 15:57
-
-
Save michaelneu/f0ca7e6c672160f46971811c53aa7cf6 to your computer and use it in GitHub Desktop.
A Chrome extension to remove the menubar from the Slack webapp.
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
.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; | |
} |
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
{ | |
"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