NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name SvelteMaterialUI top bar remover // @namespace a3k // @version 0.1 // @description Remove annoying top bar // @author a3k // @license GPL-3.0-only // @match https://sveltematerialui.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=sveltematerialui.com // @grant none // @run-at document-end // ==/UserScript== (function() { 'use strict'; document.body.classList = []; })();