Greasemonkey Scripts For vB: Now With A "I Can't Believe It's Not Fusetalk" Script

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

Kelemvor

Lifer
May 23, 2002
16,928
8
81
Awesome guys.

Came here looking to find out about changing the link colors and found even more. Installed the link color changer, the Jump List, the AdBlock thing. All great. Even modified the Jump List to put my Favorite items up at the top for easy finding.

Thanks all!
 

kalrith

Diamond Member
Aug 22, 2005
6,628
7
81
I installed the AT Top Jumplist script and added the filter to Adblock Plus.

Thanks a lot, guys!
beer.jpg
 

Ken g6

Programming Moderator, Elite Member
Moderator
Dec 11, 1999
16,695
4,658
75
Alright, everybody, I've got another Greasemonkey script for you. The first one I've written without Platypus, by the way.

FuseTalk smilies importer for vBulletin

It brings your old smilies back! :D (Well, at least some of them.)

Back from where, you may ask? Well, AT Forums wasn't the only FuseTalk board around. So I made the script load them from the one board I figured wouldn't change to something else: http://forums.fusetalk.com/! :sneaky: (By the way, this also means I can't get the really old smilies back for you - I have some copies of them but I'm sure they're still copyrighted too, so I can't post them anywhere.)

There's a few oddities. For instance, :eek: and :eek: map to one smilie, as do :D and :biggrin:. And of course there are a lot of smilies that don't have equivalents on the other board (both ways). But I can add those as AT forums adds equivalents, I hope.
 

olds

Elite Member
Mar 3, 2000
50,122
778
126
I installed the AT Top Jumplist script and added the filter to Adblock Plus.

Thanks a lot, guys!
beer.jpg
I did the same but when I installed Flash Block, I lost the Jumplist script. Flash block isn't blocking it.
 

ViRGE

Elite Member, Moderator Emeritus
Oct 9, 1999
31,516
167
106
Alright, everybody, I've got another Greasemonkey script for you. The first one I've written without Platypus, by the way.

FuseTalk smilies importer for vBulletin

It brings your old smilies back! :D (Well, at least some of them.)

Back from where, you may ask? Well, AT Forums wasn't the only FuseTalk board around. So I made the script load them from the one board I figured wouldn't change to something else: http://forums.fusetalk.com/! :sneaky: (By the way, this also means I can't get the really old smilies back for you - I have some copies of them but I'm sure they're still copyrighted too, so I can't post them anywhere.)

There's a few oddities. For instance, :eek: and :eek: map to one smilie, as do :D and :biggrin:. And of course there are a lot of smilies that don't have equivalents on the other board (both ways). But I can add those as AT forums adds equivalents, I hope.
That may very well be the coolest script yet.
 

Spacehead

Lifer
Jun 2, 2002
13,067
9,858
136
Um, i can't post after installing Ken g6's smiley importer script. After disabling it i can post.
Anyone else have this problem?
 

ViRGE

Elite Member, Moderator Emeritus
Oct 9, 1999
31,516
167
106
Testing.:)

Edit: I'm not having any issues posting.
 

Spacehead

Lifer
Jun 2, 2002
13,067
9,858
136
Definitely messing me up for some reason. The color of the reply boxes are different with the script enabled & disabled too.
FF 3.5.4
GM 0.8.20090920.2
 

Kev

Lifer
Dec 17, 2001
16,367
4
81
Sorry, i was thinking there was an option for that :oops:

Adblock would work, if you have it.

It would be nice if you could conver the smilies to text though. Sometimes you need to be able to see the smilies when someone is being sarcastic.
 

SunnyD

Belgian Waffler
Jan 2, 2001
32,675
146
106
www.neftastic.com
I did the same but when I installed Flash Block, I lost the Jumplist script. Flash block isn't blocking it.
Where can I find this "Flash Block"? Since I wrote the jumplist script, it's my duty to fix whatever problem you have. And no, I'm not going into your basement to "take a look"... :eek:
 

Kelemvor

Lifer
May 23, 2002
16,928
8
81
I know you guys love your Greasemonkey scripts, so let's try to keep it all in one place.

We'll start with a script to change the color of links, since that was a popular one. vB uses the same color for visited and unvisited links, the following assigns unvisited links a different color so that you can tell the two apart.

Code:
// ==UserScript==
// @name          Anandtech - gives visited links another color
// @description	  Gives visited links another color on the new AT forums
// @include       http://forums.anandtech.com/*
// ==/UserScript==

function addVistedColor()
{
	var head, style;
	head = document.getElementsByTagName('head')[0];
	
	if (!head) { return; }
	
	style = document.createElement('style');
	style.type = 'text/css';
        style.innerHTML = "a:link{color:#588BBE;} a:visited{color:darkblue;}";      
	head.appendChild(style);
}

addVistedColor();

I actually reversed the colors used here. The "Visited" color is darker and makes it look bolded so those stand out more than the normal color. I switched is so they look bold/dark by default and go lighter when they are read. Just seemed to make more sense.
 

Ken g6

Programming Moderator, Elite Member
Moderator
Dec 11, 1999
16,695
4,658
75
Um, i can't post after installing Ken g6's smiley importer script. After disabling it i can post.
Anyone else have this problem?
Your timing is impeccable. I posted a version that also converts things like :beer: to icons for a few minutes, but it gave me that problem too, so I reverted it for the night. I'll see if I can get it working soon. Meanwhile, download what's posted there now.
 

rise

Diamond Member
Dec 13, 2004
9,116
46
91
Thanks... so as Olds said, it's not Flashblock that's causing the issue. After install, the jumplist remains. Something else is disabling the script.
d'oh! yeah, i guess i could've mentioned that i use flashblock and your jumpbar without an issue.
 

Spacehead

Lifer
Jun 2, 2002
13,067
9,858
136
Um, i can't post after installing Ken g6's smiley importer script. After disabling it i can post.
Anyone else have this problem?

Your timing is impeccable. I posted a version that also converts things like :beer: to icons for a few minutes, but it gave me that problem too, so I reverted it for the night. I'll see if I can get it working soon. Meanwhile, download what's posted there now.
OK thanks, it's working now :)