Skip to content

Instantly share code, notes, and snippets.

@michaelneu
Created April 9, 2020 15:57
Show Gist options
  • Select an option

  • Save michaelneu/f0ca7e6c672160f46971811c53aa7cf6 to your computer and use it in GitHub Desktop.

Select an option

Save michaelneu/f0ca7e6c672160f46971811c53aa7cf6 to your computer and use it in GitHub Desktop.

Revisions

  1. michaelneu created this gist Apr 9, 2020.
    12 changes: 12 additions & 0 deletions hide.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    .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;
    }
    12 changes: 12 additions & 0 deletions manifest.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    {
    "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"]
    }
    ]
    }