charizard
|
It turns out the old forum icons for AIM Phoenix still exist on the website! Instead of topicreply2.png and topicnew2.png, it's topicreply.png and topicnew.png.
Userscript to replace icons:
================================
// ==UserScript==
// @name Old AIM Phoenix Forum Icons
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Replaces the new forum icons for the AIM Phoenix forum with the old ones.
// @author yoshi (yoshi.isverylame.com)
// @match http://iwarg.ddns.net/aim/index.php?action=forums*
// @grant none
// ==/UserScript==
var interval = 0.01;
function imgReplace() {
var images = document.getElementsByTagName('img'),
len = images.length, img, i;
for (i = 0; i < len; i += 1) {
img = images[i];
img.src = img.src.replace('topicnew2.png', 'topicnew.png');
img.src = img.src.replace('topicreply2.png', 'topicreply.png');
}
}
setInterval(imgReplace, interval * 1000);
inactive
|