To set up the helper script, we need to run it on the background page for the extension. Here's one way to do that:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro Group Presets | |
// @namespace http://www.arfie.nl | |
// @version 1.1.1 | |
// @description Allows you to create presets for group/private game settings | |
// @author Ruud Verbeek | |
// @include http://tagpro-*.koalabeast.com/groups/* | |
// @include http://tangent.jukejuice.com/groups/* | |
// @include http://maptest*.newcompte.fr/groups/* | |
// @grant GM_setValue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro group information in joiner | |
// @namespace http://www.arfie.nl | |
// @version 0.1.3 | |
// @description something useful | |
// @author Ruud Verbeek | |
// @include http://tagpro-*.koalabeast.com/games/find | |
// @include http://tangent.jukejuice.com/games/find | |
// @include http://*.newcompte.fr/games/find | |
// @grant GM_setValue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro Group Enhancements | |
// @namespace http://www.arfie.nl | |
// @version 0.1.1 | |
// @description Better group layout | |
// @author Ruud Verbeek | |
// @include http://tagpro-*.koalabeast.com/groups* | |
// @include http://tangent.jukejuice.com/groups* | |
// @include http://*.newcompte.fr/groups* | |
// @grant GM_setValue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro AFK warning | |
// @namespace http://www.arfie.nl | |
// @version 0.1 | |
// @author Ruud Verbeek | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// NewCompte's servers don't have an AFK timeout | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro Radians | |
// @namespace http://www.arfie.nl | |
// @version 0.1 | |
// @author Ruud Verbeek | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Tagpro Ping and Loss Reporter | |
// @namespace http://www.reddit.com/u/slothbear | |
// @description Reports ping or loss in Tagpro chat (Shift + P, Shift + L) | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://*.newcompte.fr:* | |
// @license whatever brah! | |
// @author slothbear / %bodyfat / Ruud | |
// @version 1.8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro Animation FPS | |
// @namespace http://www.arfie.nl/ | |
// @version 0.1 | |
// @description Allows to change FPS of boosts/portals | |
// @author Ruud | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://*.newcompte.fr:* | |
// @include http://tangent.jukejuice.com:* | |
// @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TagPro show flairs when zoomed out | |
// @version 0.1 | |
// @author Ruud | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://*.newcompte.fr:* | |
// @include http://tangent.jukejuice.com:* | |
// ==/UserScript== | |
/* jshint -W097 */ | |
'use strict'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from math import floor | |
import sys | |
if len(sys.argv) < 2: | |
print 'Usage: python stv.py [ballot filename]' | |
exit() | |
DELIM = ',' |
OlderNewer