Skip to content

Instantly share code, notes, and snippets.

@g3rv4
Last active February 26, 2020 13:21
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 g3rv4/604f09f2d993751a82411de137e76542 to your computer and use it in GitHub Desktop.
Save g3rv4/604f09f2d993751a82411de137e76542 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Hide SO Sidebar
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://stackoverflow.com/*
// @match https://*.stackoverflow.com/*
// @match https://*.stackexchange.com/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle('#sidebar {display: none} #mainbar {width: calc(100% - 24px) !important;}');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment