KBin.social remove custom styles

Says it right in the title

  1. // ==UserScript==
  2. // @name KBin.social remove custom styles
  3. // @namespace https://kbin.social/
  4. // @version 0.3
  5. // @description Says it right in the title
  6. // @author H2SO4
  7. // @match https://kbin.social/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. let stylesheet = document.getElementsByTagName("head")[0].getElementsByTagName("style");
  15. if(stylesheet && stylesheet[0]) {
  16. stylesheet[0].remove();
  17. }
  18. })();