Skip to content

Instantly share code, notes, and snippets.

@CezaryDanielNowak
Created July 21, 2021 15:55
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 CezaryDanielNowak/0bc9ed9dc8e0b86ede22a1de8e5e19df to your computer and use it in GitHub Desktop.
Save CezaryDanielNowak/0bc9ed9dc8e0b86ede22a1de8e5e19df to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Slack: remove huddle
// @version 0.1
// @description try to take over the world!
// @author Cezary Nowak
// @match https://app.slack.com/client/*
// @icon https://www.google.com/s2/favicons?domain=slack.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
const style = document.createElement('style');
style.innerText = '[data-qa="huddle_sidebar_footer"] { display: none; }';
document.body.appendChild(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment