dynamitejim
Member
Opera 8 supports user js and greasemonkey scripts as well. I'm not sure if this one works though.
Dalamar86 said:I installed the script but it does not seem to want to work for me. I'll toy with it some.
On a side note, here is another very useful IGN Firefox script which removes all those ads and reformats the page so the news, reviews, ect collums fill their places.
EDIT: Heres a quick screen capture of how it turns out: http://img.photobucket.com/albums/0903/Dalamar86/adlessign.jpg
Code:/* IGN */ div#leader, div#leaderboardRow, div#rowLeaderboard { background-image: none !important; height: 15px !important; } div#leader div, div#leaderboardRow div, div#colRight div#adHalfpage, div#colRight div#sweeps, div#colRight div#insider, div#colRight div#fu, div#colRight div#panelBoxAd, div#colRight div#floodlight, div#minisweeps, div#colRight img[src$="/images/panelboxad_bottom.gif"] { display: none !important; }
*Go to windows\application data\mozzila\firefox\profiles\<random characters>.<user name>\chrome\
*Open the userContent-example file, replace the examples in there with this code, and then save and rename the file userContent.
*Restart and enjoy.
// ==UserScript==
// @name IGNLinks
// @description Converts IGN Media Links To Direct Download Links
// @include http://*.ign.com/*
links = document.getElementsByTagName('A');
for (i=0; i<links.length; i++) {
link = links[i];
if (link.href.match("^http:\/\/.{1,25}movies\.")) {
link.href = unescape(link.href.replace(/^(.*)(\?.*)/, "$1"));
} else if (link.href.match("^http:\/\/media")) {
link.href = unescape(link.href.replace(/(^http.*=)(.*)/, "$2"));
}
}
f_elz said:Eh, I am fine with Safari 2.0. I don't want to download Fx 1.04 :\
nataku said:
Dalamar86 said:I installed the script but it does not seem to want to work for me. I'll toy with it some.
On a side note, here is another very useful IGN Firefox script which removes all those ads and reformats the page so the news, reviews, ect collums fill their places.
EDIT: Heres a quick screen capture of how it turns out: http://img.photobucket.com/albums/0903/Dalamar86/adlessign.jpg
Code:/* IGN */ div#leader, div#leaderboardRow, div#rowLeaderboard { background-image: none !important; height: 15px !important; } div#leader div, div#leaderboardRow div, div#colRight div#adHalfpage, div#colRight div#sweeps, div#colRight div#insider, div#colRight div#fu, div#colRight div#panelBoxAd, div#colRight div#floodlight, div#minisweeps, div#colRight img[src$="/images/panelboxad_bottom.gif"] { display: none !important; }
*Go to windows\application data\mozzila\firefox\profiles\<random characters>.<user name>\chrome\
*Open the userContent-example file, replace the examples in there with this code, and then save and rename the file userContent.
*Restart and enjoy.
Bowser said:Can someone help me get this one to work?
I do this:
Run-->%AppData%-->Mozilla-->Firefox-->Profile-->xg9z9s5g.default-->chrome-->userContent-example.css-->delete the stuff and put in the new stuff-->save-->rename to userContent.css-->restart
But I can't get it to work
Dalamar86 said:You went into the wrong folder from profiles I think. Its not in the default. folder, it the <random characters>.<your user name> folder.
Yeah one that changes links from say forums.gaming-age.com/* or new.ga-forum.com/* to ga-forum.com/* would be awesome (or vice versa). Its kinda annoying having the three different URLs being used :/sp0rsk said:can you be a dear and write some firefox GAF extensions?
Striek said:I've had this for awhile, FireFox rocks!
Another awesome one is the google image relinker (straight from thumbnail to full size pic).