Advertisement
Guest User

Untitled

a guest
Jan 9th, 2015
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. // ==UserScript==
  2. // @name JohnRipper
  3. // @namespace BitchesLoveTacos
  4. // @include https://forums.dust514.com/*
  5. // @version 1
  6. // @grant none
  7. // ==/UserScript==
  8. body = document.body;
  9. images = body.getElementsByClassName("avatarimage lazy");
  10. names = body.getElementsByClassName("box");
  11. for(i = 0; i < images.length; i++) {
  12. images[i].setAttribute("src","https://pbs.twimg.com/profile_images/532904129803218946/-6yM2Grg_400x400.jpeg");
  13. }
  14.  
  15. for(i = 0; i < names.length; i++) {
  16. names[i].setAttribute("title","Immortal John Ripper");
  17. names[i].setAttribute("text","Immortal John Ripper");
  18. names[i].innerHTML = "General John Ripper";
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement