Where is the option to disable smilies?Does diabling smilies in your User CP do that? Or does it just remove them altogether?
edit- guess it just shows the code for the smiley
Where is the option to disable smilies?Does diabling smilies in your User CP do that? Or does it just remove them altogether?
edit- guess it just shows the code for the smiley
Sorry, i was thinking there was an option for thatWhere is the option to disable smilies?
ThanksDrag and drop right into Firefox. It will prompt you with a Greasemonkey Script Installation window.
I did this too. Much better! Thanks!I installed the AT Top Jumplist script and added the filter to Adblock Plus.
Thanks a lot, guys!![]()
Also as a side note: Most Greasemonkey scripts also work in Chrome natively, and should work in Safari with GreaseKit (or CreamMonkey, no idea which one is supported better as I don't run Safari).
Also they work in Opera too. http://www.ghacks.net/2008/08/10/greasemonkey-in-opera/
I did the same but when I installed Flash Block, I lost the Jumplist script. Flash block isn't blocking it.I installed the AT Top Jumplist script and added the filter to Adblock Plus.
Thanks a lot, guys!![]()
I did the same but when I installed Flash Block, I lost the Jumplist script. Flash block isn't blocking it.
Both. Ad Block isn't blocking any flash.Flash Block? Did you mean Ad Block or are you using both?
That may very well be the coolest script yet.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!(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,and
map to one smilie, as do
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.
Sorry, i was thinking there was an option for that
Adblock would work, if you have 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"...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"...![]()
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();
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.Um, i can't post after installing Ken g6's smiley importer script. After disabling it i can post.
Anyone else have this problem?
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.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.
Um, i can't post after installing Ken g6's smiley importer script. After disabling it i can post.
Anyone else have this problem?
OK thanks, it's working nowYour 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.