- Oct 9, 1999
- 31,516
- 167
- 106
I know you guys love your Greasemonkey scripts, so let's try to keep it all in one place.
----
Use GM Scripts in IE
GM Scripts
User Styles
Requires Stylish - Firefox and Thunderbird only, i guess
----
Use GM Scripts in IE
GM Scripts
- FTLook for vBulletin - Ken g6 has whipped up a Greasemonkey script that rearranges vB to look like Fusetalk. It's not perfectly identical, but it's much closer than the default AnandTech skin. So if you want something that better approximates Fusetalk, take a look at FTLook for vB. - Ken g6
Note: This works best with Ken's Stylish script, below.
http://userscripts.org/scripts/show/61852
- AT Top Jumplist - http://www.neftastic.com/atjumplist.user.js - SunnyD
Puts a hand dandy Forum Jumplist at the TOP of every page (below the navi bar / user status area, above the page navigation bar).
- AT Redirector Buster - http://www.neftastic.com/atredir.user.js - SunnyD
Remove all references to "Dynamite Media" redirection in AnandTech forum links.
- Adblock sidebar killer filter . - dwell
Code:anandtech.com#td(class*=page)
- FuseTalk smilies importer for vBulletin
It brings your old smilies back! (Well, at least some of them.) - Ken g6
http://sites.google.com/site/kenscode/web-world
- 32 scripts written for vBulletin
including:
vBulletin image resizer
vBulletin Thread Tooltip Preview Fix
Endless vBulletin Forum Pages
and many more
- Add contacts to the left sidebar (like the old buddy list) - hg403
http://userscripts.org/scripts/show/61394
- Move the private messages window to the left side bar - hg403
http://userscripts.org/scripts/show/61395
- The Reiconizer - Detailed description - Ken g6
- 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.- ViRGE
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();
User Styles
Requires Stylish - Firefox and Thunderbird only, i guess
- Dark theme - hg403
http://userstyles.org/styles/22383
- Smaller fonts/more compact forum - hg403
http://userstyles.org/styles/22382
- Remove the flicker - Lessens the flicker effect you get while pages are loading the GM script. Works best with Ken's FTLook for vBulletin GM script- Ken g6
http://userstyles.org/styles/22529
- Image Resizer This makes normal images no more than 800px wide, and images inside [ quote ]s the size of user icons. It only works on normal thread listings; e.g. if you click on a post number you'll see the full image.
Code:@namespace url(http://www.w3.org/1999/xhtml); @-moz-document url-prefix("http://forums.anandtech.com/showthread.php") { /* Resize normal images. */ #posts td.alt1 div img { max-width:800px; } /* Resize quoted images. */ #posts td.alt1 div div td.alt2 div img { max-width:80px; max-height:80px; } }
Attachments
Last edited: