Skip to content

Instantly share code, notes, and snippets.

@bquast
Created April 21, 2024 16:11
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 bquast/7d7e76bd8fb9dec070679251732a351f to your computer and use it in GitHub Desktop.
Save bquast/7d7e76bd8fb9dec070679251732a351f to your computer and use it in GitHub Desktop.
// ==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