Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name JohnRipper
- // @namespace BitchesLoveTacos
- // @include https://forums.dust514.com/*
- // @version 1
- // @grant none
- // ==/UserScript==
- body = document.body;
- images = body.getElementsByClassName("avatarimage lazy");
- names = body.getElementsByClassName("box");
- for(i = 0; i < images.length; i++) {
- images[i].setAttribute("src","https://pbs.twimg.com/profile_images/532904129803218946/-6yM2Grg_400x400.jpeg");
- }
- for(i = 0; i < names.length; i++) {
- names[i].setAttribute("title","Immortal John Ripper");
- names[i].setAttribute("text","Immortal John Ripper");
- names[i].innerHTML = "General John Ripper";
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement