Advertisement
Guest User

Untitled

a guest
Nov 16th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. // ==UserScript==
  2. // @name comic sans is retarded
  3. // @namespace http://thepotato.net/
  4. // @version 1.0
  5. // @description srsly
  6. // @author Steve5451
  7. // @include http://forum.blockland.us/index.php?topic=*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var spans = document.getElementsByTagName("span");
  12.  
  13. for(i = 0; i < spans.length; i++) {
  14. if(spans[i].getAttribute("style") !== null && spans[i].getAttribute("style").toLowerCase().indexOf("comic sans ms") !== -1) {
  15. spans[i].innerHTML = "i'm retarded";
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement