// ==UserScript== // @name Miniature noelshack gif // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author nekos // @include http://www.jeuxvideo.com/forums/* // @grant none // @downloadURL none // ==/UserScript== imagashack = document.getElementsByClassName('img-shack'); for (var i = 0; i < imagashack.length; i++) { img = document.getElementsByClassName('img-shack')[i]; srcc = img.src; alt = img.alt; giff = "gif"; if (img.alt.indexOf(giff) >= 0) { console.log("il y a un gif ici !"); srcc = srcc.replace("minis", "fichiers").replace("png", "gif"); document.getElementsByClassName('img-shack')[i].src = srcc; } }