Skip to content

Instantly share code, notes, and snippets.

View dkoes's full-sized avatar

David Koes dkoes

View GitHub Profile
@dkoes
dkoes / slack.js
Created December 21, 2023 22:38
Code that adds a button to hide new slack vertical toolbar.
var b;
var thing = $; //no idea why $ isn't defined within handler
function fixSlack() {
thing('.p-control_strip').style.left = 0
thing('.p-control_strip').style.width = "64px"
b = document.createElement('button');
b.classList.add('c-button-unstyled');
b.classList.add('p-control_strip__circle_button');