Skip to content

Instantly share code, notes, and snippets.

@Thann
Last active April 19, 2017 07:44
Show Gist options
  • Save Thann/6305c4df36d28227d610b69c448f9eeb to your computer and use it in GitHub Desktop.
Save Thann/6305c4df36d28227d610b69c448f9eeb to your computer and use it in GitHub Desktop.
Userscript to toggle the reddit sidebar
// ==UserScript==
// @name Reddit Sidebar Toggle
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://*.reddit.com/*
// @grant none
// ==/UserScript==
// Requires RES
(function() {
'use strict';
function toggle(bool){ $('.side').toggle(bool); }
toggle(!!$('#header-bottom-right').width());
$('#userbarToggle').unbind().click(toggle);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment