• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 23:33
CEST 05:33
KST 12:33
  • 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
Serral wins EWC 202543Tournament Spotlight: FEL Cracow 202510Power Rank - Esports World Cup 202580RSL Season 1 - Final Week9[ASL19] Finals Recap: Standing Tall15
Community News
Weekly Cups (Jul 28-Aug 3): herO doubles up5LiuLi Cup - August 2025 Tournaments3[BSL 2025] H2 - Team Wars, Weeklies & SB Ladder10EWC 2025 - Replay Pack4Google Play ASL (Season 20) Announced58
StarCraft 2
General
Clem Interview: "PvT is a bit insane right now" Serral wins EWC 2025 TL Team Map Contest #5: Presented by Monster Energy Would you prefer the game to be balanced around top-tier pro level or average pro level? Weekly Cups (Jul 28-Aug 3): herO doubles up
Tourneys
WardiTV Mondays $5,000 WardiTV Summer Championship 2025 Sparkling Tuna Cup - Weekly Open Tournament LiuLi Cup - August 2025 Tournaments Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
External Content
Mutation # 485 Death from Below Mutation # 484 Magnetic Pull Mutation #239 Bad Weather Mutation # 483 Kill Bot Wars
Brood War
General
How do the new Battle.net ranks translate? BW General Discussion Which top zerg/toss will fail in qualifiers? Google Play ASL (Season 20) Announced Nobody gona talk about this year crazy qualifiers?
Tourneys
[Megathread] Daily Proleagues [ASL20] Online Qualifiers Day 2 Cosmonarchy Pro Showmatches [ASL20] Online Qualifiers Day 1
Strategy
Simple Questions, Simple Answers [G] Mineral Boosting Muta micro map competition Does 1 second matter in StarCraft?
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Total Annihilation Server - TAForever Beyond All Reason [MMORPG] Tree of Savior (Successor of Ragnarok)
Dota 2
Official 'what is Dota anymore' discussion
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 Vanilla Mini Mafia
Community
General
Things Aren’t Peaceful in Palestine US Politics Mega-thread European Politico-economics QA Mega-thread Bitcoin discussion thread 9/11 Anniversary
Fan Clubs
INnoVation Fan Club SKT1 Classic Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread [\m/] Heavy Metal Thread Korean Music Discussion
Sports
2024 - 2025 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Gtx660 graphics card replacement Installation of Windows 10 suck at "just a moment" Computer Build, Upgrade & Buying Resource Thread
TL Community
TeamLiquid Team Shirt On Sale The Automated Ban List
Blogs
[Girl blog} My fema…
artosisisthebest
Sharpening the Filtration…
frozenclaw
ASL S20 English Commentary…
namkraft
The Link Between Fitness and…
TrAiDoS
momentary artworks from des…
tankgirl
from making sc maps to makin…
Husyelt
Customize Sidebar...

Website Feedback

Closed Threads



Active: 716 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
Zurich15328 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
Zurich15328 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
PiGosaur Monday
00:00
#43
PiGStarcraft528
CranKy Ducklings139
SteadfastSC116
davetesta45
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft528
SteadfastSC 116
Nina 77
-ZergGirl 33
StarCraft: Brood War
Sea 12815
ggaemo 456
Dewaltoss 48
Icarus 9
Aegong 3
Stormgate
WinterStarcraft1222
UpATreeSC373
Dota 2
monkeys_forever408
Counter-Strike
Coldzera 232
Other Games
summit1g8793
shahzam1347
Fnx 1082
C9.Mang0303
ViBE226
Maynarde161
Organizations
Other Games
gamesdonequick1112
BasetradeTV27
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• practicex 22
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Rush1034
Other Games
• Scarra1193
Upcoming Events
WardiTV Summer Champion…
7h 27m
Stormgate Nexus
10h 27m
uThermal 2v2 Circuit
12h 27m
The PondCast
1d 6h
WardiTV Summer Champion…
1d 7h
Replay Cast
1d 20h
LiuLi Cup
2 days
uThermal 2v2 Circuit
2 days
RSL Revival
2 days
RSL Revival
3 days
[ Show More ]
uThermal 2v2 Circuit
3 days
CSO Cup
3 days
Sparkling Tuna Cup
4 days
uThermal 2v2 Circuit
4 days
Wardi Open
5 days
RotterdaM Event
5 days
RSL Revival
6 days
Liquipedia Results

Completed

ASL Season 20: Qualifier #2
FEL Cracow 2025
CC Div. A S7

Ongoing

Copa Latinoamericana 4
Jiahua Invitational
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
HCC Europe
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025

Upcoming

ASL Season 20
CSLPRO Chat StarLAN 3
BSL Season 21
BSL 21 Team A
RSL Revival: Season 2
Maestros of the Game
SEL Season 2 Championship
WardiTV Summer 2025
uThermal 2v2 Main Event
Thunderpick World Champ.
MESA Nomadic Masters Fall
CS Asia Championships 2025
Roobet Cup 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
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.