Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Recercled
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description Enlève les cercles de tout le monde et me met le meilleur cercle
- // @author You
- // @match https://www.jeuxvideo.com/forums/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=jeuxvideo.com
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- // Your code here...
- const avatar = document.querySelectorAll('.bloc-avatar-msg');
- let userAvatarMsg;
- avatar.forEach(avatar => {
- userAvatarMsg = avatar.children;
- if(userAvatarMsg[0].getAttribute('class') == "challenge-border-avatar js-lazy")
- {
- userAvatarMsg[0].remove();
- }
- if(userAvatarMsg[0].getAttribute('alt') == "dragonfive")
- {
- let cercle = document.createElement("img");
- cercle.classList.add("challenge-border-avatar-perso");
- cercle.classList.add("js-lazy");
- //cercle.src="data:image/gif;base64,R0…AAAALAAAAAABAAEAAAIBRAA7";
- cercle.src ="https://static.jvc.gg/22.17.1/img/challenge/legend.png";
- avatar.insertBefore(cercle, avatar.firstChild);
- }
- });
- })();
Add Comment
Please, Sign In to add comment