Advertisement
Rahph

DBL ICBM

Jan 20th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         DBL style ICBM
  3. // @namespace    http://rph.space/
  4. // @version      0.1
  5. // @description  Nuke all styles
  6. // @author       Rph
  7. // @match        https://discordbots.org/bot/*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     var _a=document.getElementsByClassName('content')[0]
  13.       .getElementsByTagName('style');
  14.     if(_a){
  15.         for(var _i=0;_i<_a.length;_i++){
  16.             _a[_i].remove();
  17.         }
  18.     }
  19. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement