Skip to content

Instantly share code, notes, and snippets.

@brizandrew
Created July 30, 2019 23:47
Show Gist options
  • Save brizandrew/223aca093e1550b56ea0993fc908d60a to your computer and use it in GitHub Desktop.
Save brizandrew/223aca093e1550b56ea0993fc908d60a to your computer and use it in GitHub Desktop.
Bookmarklet to hide everything but the channel on a Slack page.
javascript:(function(){
s = ".p-workspace__primary_view";
function x(attr, val){document.querySelector(s).style[attr]=val;}
x('position', 'fixed');
x('background-color', 'white');
x('top', 0);
x('right', 0);
x('left', 0);
x('bottom', 0);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment