Greasy Fork

Miniature noelshack gif

try to take over the world!

目前为 2016-09-24 提交的版本。查看 最新版本

// ==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
// ==/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;
	}
}