Login Register
BIG WIN: Court of Appeals Upholds Revocation of Protected Status for 400,000 Immigrants --- --- FBI Not Ruling Out Co-conspirators in Kirk Murder --- --- Rubio Says US Will Act after Brazilian Supreme Court Sentences Bolsonaro to 27 Years in Prison --- --- Authorities Investigating Role of Transgender Boyfriend in Murder of Charlie Kirk --- --- Incoming President of Oxford Union Will Be Disciplined for Mocking Charlie Kirk’s Murder --- --- Kirk Murder Suspect Bragged about Long-Range Shooting Skills --- --- Bill Maher Slams “Gross” Liberals Mocking Charlie Kirk Assassination & Ignoring Iryna Zarutska Murder, Criticizes Anti-Free Speech UK --- --- Six Illegals Arrested Following Fatal Hit-and-Run in Florida --- --- FLASHBACK: The Hour of the Lone Wolf: Get Ready for More Crazy Killers Now America’s Organized Left Lies in Tatters --- --- Muddying the Waters: Don’t Let the Left Distract Us from What Needs To Be Done --- ---



[Reply]
Forum Index > AIM/ICQ Discussion
Old forum icons
Posted on: 09-08 3:36 pm
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
Posted on: 09-09 3:04 pm
Wankface

That script lagged on my SeaMonkey internet suite.

AIM 5.0.2892 w/ DeadAIM 3.2.1 | Y!2 - Rihannsu
< - 1 - >

[Reply]