// ==UserScript== // @name KBin.social remove custom styles // @namespace https://kbin.social/ // @version 0.2 // @description Says it right in the title // @author H2SO4 // @match https://kbin.social/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; let stylesheet = document.getElementsByTagName("head")[0].getElementsByTagName("style"); stylesheet[0].remove(); })();