// ==UserScript== // @name Debloat SE // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://stackoverflow.com/questions/* // @match https://superuser.com/questions/* // @icon https://www.google.com/s2/favicons?sz=64&domain=superuser.com // @grant none // ==/UserScript== (function() { 'use strict'; document.querySelector('#left-sidebar').remove(); document.querySelector('a[href="/questions/ask"]').remove(); document.querySelectorAll('#sidebar > :not(.sidebar-related)').forEach((el) => el.remove()); })();