• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 15:04
CEST 21:04
KST 04:04
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Team TLMC #5: Vote to Decide Ladder Maps!0[ASL20] Ro8 Preview Pt1: Mile High15Team TLMC #5 - Finalists & Open Tournaments2[ASL20] Ro16 Preview Pt2: Turbulence10Classic Games #3: Rogue vs Serral at BlizzCon10
Community News
Artosis vs Ret Showmatch1Classic wins RSL Revival Season 20Weekly Cups (Sept 15-21): herO Goes For Four2SC2 5.0.15 PTR Patch Notes + Sept 22nd update257BSL 2025 Warsaw LAN + Legends Showmatch4
StarCraft 2
General
Storm change is a essentially a strict buff on PTR SC2 5.0.15 PTR Patch Notes + Sept 22nd update Code S RO4 & Finals Preview - Cure, Dark, Maru, Creator Why Storm Should NOT Be Nerfed – A Core Part of Pr Classic wins RSL Revival Season 2
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament Prome's Evo #1 - Solar vs Classic (SC: Evo) Monday Nights Weeklies RSL: Revival, a new crowdfunded tournament series SC2's Safe House 2 - October 18 & 19
Strategy
Custom Maps
External Content
Mutation # 492 Get Out More Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense
Brood War
General
Artosis vs Ret Showmatch [ASL20] Ro8 Preview Pt1: Mile High BGH Auto Balance -> http://bghmmr.eu/ Whose hotkey signature is this? Old rep packs of BW legends
Tourneys
[Megathread] Daily Proleagues [ASL20] Ro8 Day 2 [ASL20] Ro8 Day 1 [ASL20] Ro16 Group D
Strategy
Simple Questions, Simple Answers Muta micro map competition
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Liquipedia App: Now Covering SC2 and Brood War! Path of Exile Borderlands 3
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine The Big Programming Thread UK Politics Mega-thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
BarCraft in Tokyo Japan for ASL Season5 Final The Automated Ban List
Blogs
[AI] JoCo is Eminem for com…
Peanutsc
Try to reverse getting fired …
Garnet
[ASL20] Players bad at pi…
pullarius1
Too Many LANs? Tournament Ov…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1413 users

Team Liquid Greasemonkey Scripts - Page 3

Forum Index > TL Community
Post a Reply
Prev 1 2 3 4 5 Next All
zatic
Profile Blog Joined September 2007
Zurich15348 Posts
March 10 2011 15:41 GMT
#41
http://userscripts.org/users/3156/scripts

Most of it outdated I am afraid, but have a look.
ModeratorI know Teamliquid is known as a massive building
pidikun
Profile Joined October 2010
Japan22 Posts
March 10 2011 15:55 GMT
#42
I would recommend a mostly empty page containing only important data without images
and stuff for an easier analysis of js scripts an such...

... Or a TL Service API
Two hours of trial and error can save ten minutes of manual reading.
kingcoyote
Profile Blog Joined May 2010
United States546 Posts
March 17 2011 02:46 GMT
#43
I just added a second greasemonkey script. This one modifies the banned user thread so each banned user's name becomes a link to their post history.

Also, the sidebar updater does appear to have crashed on Firefox. I'll try to get that one patched up and put it back online.
Irave
Profile Joined October 2010
United States9965 Posts
March 17 2011 02:50 GMT
#44
Works great, thanks for taking the time to make this!
HaruHaru
Profile Blog Joined November 2009
United States988 Posts
March 23 2011 04:53 GMT
#45
This worked great on chrome but i just switched to firefox 4! Does this work on ff4?
Long live BroodWar!
kingcoyote
Profile Blog Joined May 2010
United States546 Posts
March 23 2011 15:37 GMT
#46
On March 23 2011 13:53 HaruHaru wrote:
This worked great on chrome but i just switched to firefox 4! Does this work on ff4?


That depends more on Greasemonkey than on my scripts. The script itself is using very standard javascript calls that are not dependent on the browser and should work on anything semi-modern.
GaiaCaT
Profile Joined June 2011
35 Posts
July 25 2011 21:24 GMT
#47
Here's a small, hack'ish script for colouring the body of posts from specific people.

Install script, reload page, and click on an empy part of the titlebar of a post (dark blue part)
It will cycle through 3 colours: green, red and normal.

The names are stored in about:config and thus persist through sessions.
I have no idea about the character limit but it's larger than 1024 bytes, or 50+ names which should be more than enough for most people's needs.
Only tested with FireFox 3.6

http://gaiacat.homepage.dk/teamliquid_-_post_colours.user.js

Source in case file is unavailable:
+ Show Spoiler +

// ==UserScript==
// @name TeamLiquid - Post Colours
// @namespace GaiaCaT
// @description Coloured Posts
// @version 0.9
// @include http://teamliquid.net/*
// @include http://www.teamliquid.net/*
// ==/UserScript==

var post = document.getElementsByClassName('solid');
var colourize = eval(GM_getValue('Colourize', '[]'));

for (i in post) {
post[i].getElementsByClassName('titelbalk')[0].addEventListener("click", my_func, true);
postname = String(post[i].getElementsByClassName('forummsginfo')[0].textContent.match(/\w+/));

for (j = 0; j < colourize.length; j++) {
if (postname == colourize[j][0]) {
if (colourize[j][1] == 1) { post[i].getElementsByClassName('lichtb')[0].style.backgroundColor = '#F0FFF0'; }
if (colourize[j][1] == 2) { post[i].getElementsByClassName('lichtb')[0].style.backgroundColor = '#FFF0F0'; }
}
}
}

function my_func(event) {
postname = String(event.target.getElementsByClassName('forummsginfo')[0].textContent.match(/\w+/));
var foundposter = false;
for (i = 0; i < colourize.length; i++) {
if (colourize[i][0] == postname) {
if (colourize[i][1] == 1) { colourize[i][1] = 2; }
else if (colourize[i][1] == 2) { colourize.splice(i, 1); }
var foundposter = true;
}
}
if (foundposter == false) { colourize.push([postname, 1]); }
GM_setValue('Colourize', uneval(colourize));
location.reload(false);
}
kingcoyote
Profile Blog Joined May 2010
United States546 Posts
Last Edited: 2011-07-25 21:47:36
July 25 2011 21:46 GMT
#48
On July 26 2011 06:24 GaiaCaT wrote:
Here's a small, hack'ish script for colouring the body of posts from specific people.

Install script, reload page, and click on an empy part of the titlebar of a post (dark blue part)
It will cycle through 3 colours: green, red and normal.

The names are stored in about:config and thus persist through sessions.
I have no idea about the character limit but it's larger than 1024 bytes, or 50+ names which should be more than enough for most people's needs.
Only tested with FireFox 3.6

http://gaiacat.homepage.dk/teamliquid_-_post_colours.user.js

Source in case file is unavailable:
+ Show Spoiler +

// ==UserScript==
// @name TeamLiquid - Post Colours
// @namespace GaiaCaT
// @description Coloured Posts
// @version 0.9
// @include http://teamliquid.net/*
// @include http://www.teamliquid.net/*
// ==/UserScript==

var post = document.getElementsByClassName('solid');
var colourize = eval(GM_getValue('Colourize', '[]'));

for (i in post) {
post[i].getElementsByClassName('titelbalk')[0].addEventListener("click", my_func, true);
postname = String(post[i].getElementsByClassName('forummsginfo')[0].textContent.match(/\w+/));

for (j = 0; j < colourize.length; j++) {
if (postname == colourize[j][0]) {
if (colourize[j][1] == 1) { post[i].getElementsByClassName('lichtb')[0].style.backgroundColor = '#F0FFF0'; }
if (colourize[j][1] == 2) { post[i].getElementsByClassName('lichtb')[0].style.backgroundColor = '#FFF0F0'; }
}
}
}

function my_func(event) {
postname = String(event.target.getElementsByClassName('forummsginfo')[0].textContent.match(/\w+/));
var foundposter = false;
for (i = 0; i < colourize.length; i++) {
if (colourize[i][0] == postname) {
if (colourize[i][1] == 1) { colourize[i][1] = 2; }
else if (colourize[i][1] == 2) { colourize.splice(i, 1); }
var foundposter = true;
}
}
if (foundposter == false) { colourize.push([postname, 1]); }
GM_setValue('Colourize', uneval(colourize));
location.reload(false);
}


That's pretty cool. I updated the OP with that. I'll see if I can get it working in Chrome, too.
Dalguno
Profile Blog Joined January 2011
United States2446 Posts
July 25 2011 21:52 GMT
#49
I've been looking for this forever! Thank you sir bumper!
"I'm gonna keep making drones cause I'm a baller, and ballers make drones." -Snute
kingcoyote
Profile Blog Joined May 2010
United States546 Posts
Last Edited: 2011-08-24 03:12:11
August 24 2011 01:58 GMT
#50
Looks like a recent HTML change is causing the right sidebar to not update properly, and instead it includes the entire page. I'll fix that ASAP.

Edit: Okay, not right sidebar. It's the left that's doing it. It seems like the regex isn't matching anymore, but it's a very simple regex and the pattern should still be good. Can anyone confirm if this bug exists on anything other than Chrome?

Edit #2: Or it is the right. I feel like I'm going crazy.
marvin.
Profile Joined August 2010
United States469 Posts
August 24 2011 02:05 GMT
#51
thanks for your work, this script is amazing.
TMStarcraft
Profile Joined September 2010
Australia686 Posts
August 24 2011 02:11 GMT
#52
On March 01 2011 12:13 Nitrogen wrote:
here's another script, except this one is pretty much mandatory if you want to call yourself a tler

http://www.teamliquid.net/blogs/viewblog.php?topic_id=80431

Ahhh it all makes sense now lol.
||
kingcoyote
Profile Blog Joined May 2010
United States546 Posts
August 24 2011 03:19 GMT
#53
Sup dawg. Heard you like TL, so I glitched out a script so you can browse TL while you're browsing TL.

Okay, it's fixed. The change was a simple removal of some whitespace at the right sidebar HTML start. Just reinstall it to get the newest version that doesn't give you TLception.
Zim23
Profile Joined August 2010
United States1681 Posts
August 24 2011 05:29 GMT
#54
I was just coming here to mention the new TLception problem and see it was already fixed. Much love man, much love.
Do an arranged marriage if she's not completely minging, and don't worry about dancing, get a go-kart, cheers.
Gao Xi
Profile Blog Joined June 2009
Hong Kong5178 Posts
August 24 2011 06:09 GMT
#55
Yea I had that problem and luckily its fixed now!!
龔智禮 _________________________________________________________________________________________________ CJ NATION
zatic
Profile Blog Joined September 2007
Zurich15348 Posts
August 24 2011 06:14 GMT
#56
This one is pretty usefull too

http://www.teamliquid.net/forum/viewpost.php?post_id=10679670
ModeratorI know Teamliquid is known as a massive building
Schnake
Profile Joined September 2003
Germany2819 Posts
August 24 2011 06:36 GMT
#57
The banned user sript is pretty sweet and helps my guilty pleasure.
"Alán Shore" and "August Terran" @ LoL EUW - liquidparty
Cambium
Profile Blog Joined June 2004
United States16368 Posts
Last Edited: 2011-08-24 06:49:06
August 24 2011 06:46 GMT
#58
Actually, nvm, i don't think enough ppl care given that this is general.
When you want something, all the universe conspires in helping you to achieve it.
short
Profile Joined January 2011
Sweden148 Posts
August 24 2011 06:59 GMT
#59
This got fixed quickly. Great job!
kingcoyote
Profile Blog Joined May 2010
United States546 Posts
August 24 2011 15:35 GMT
#60
On August 24 2011 15:14 zatic wrote:
This one is pretty usefull too

http://www.teamliquid.net/forum/viewpost.php?post_id=10679670


I've added this to the OP. I also put in your other collection of scripts that I somehow missed months ago.
Prev 1 2 3 4 5 Next All
Please log in or register to reply.
Live Events Refresh
Next event in 4h 56m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 675
IndyStarCraft 163
UpATreeSC 140
JuggernautJason104
ForJumy 0
StarCraft: Brood War
Horang2 1711
Rain 1112
Shuttle 951
ggaemo 234
Dewaltoss 187
Mini 168
firebathero 131
sSak 124
Movie 105
Sharp 63
[ Show more ]
ivOry 58
PianO 53
soO 35
Free 27
Terrorterran 21
NaDa 8
Dota 2
qojqva5589
Dendi1678
Counter-Strike
ScreaM1530
byalli331
pashabiceps277
Stewie2K177
Heroes of the Storm
Khaldor175
Other Games
Grubby2613
FrodaN2312
Beastyqt652
C9.Mang092
QueenE69
Trikslyr55
NeuroSwarm44
OptimusSC24
Organizations
StarCraft 2
angryscii 31
Other Games
BasetradeTV9
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• Reevou 22
• davetesta17
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• LaughNgamezSOOP
• Kozan
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 7874
League of Legends
• TFBlade1002
• Shiphtur303
Other Games
• imaqtpie1365
• WagamamaTV255
Upcoming Events
PiGosaur Monday
4h 56m
LiuLi Cup
15h 56m
OSC
19h 56m
The PondCast
1d 14h
CranKy Ducklings
2 days
Maestros of the Game
3 days
Serral vs herO
Clem vs Reynor
[BSL 2025] Weekly
3 days
[BSL 2025] Weekly
3 days
BSL Team Wars
4 days
Wardi Open
5 days
[ Show More ]
Sparkling Tuna Cup
6 days
Liquipedia Results

Completed

2025 Chongqing Offline CUP
RSL Revival: Season 2
HCC Europe

Ongoing

BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
Maestros of the Game
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1

Upcoming

IPSL Winter 2025-26
SC4ALL: Brood War
BSL 21 Team A
BSL Season 21
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
EC S1
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.