Created
April 21, 2024 16:11
-
-
Save bquast/7d7e76bd8fb9dec070679251732a351f to your computer and use it in GitHub Desktop.
This file contains 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
// ==UserScript== | |
// @name Google Docs Side Panel Hide | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-04-21 | |
// @description Hide the Google Docs Side Panel (Calendar, Keep, Maps, etc.) toggle button for a clean slate. | |
// @author Bastiaan Quast | |
// @match https://docs.google.com/document/d/* | |
// @icon none | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle('div.companion-collapser-button-container { display: none; }'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment