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 SCP Name Display | |
// @namespace http://reddit.com/u/undergroundmonorail | |
// @version 1.4 | |
// @description Show a skip's name in the title of its page | |
// @match *://www.scp-wiki.net/scp-* | |
// @match *://scp-wiki.wikidot.com/scp-* | |
// @match *://www.scp-wiki.net/random:random-scp | |
// @match *://scp-wiki.wikidot.com/random:random-scp | |
// @grant GM_xmlhttpRequest |
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
catstats = (function(catstats) { | |
var team = ["a","b","c","d","e"]; | |
var removeDuplicates = function(a) { | |
var seen = {}; | |
return a.filter(function(item) { | |
return seen.hasOwnProperty(item) ? false : (seen[item] = true); | |
}); | |
} |
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 Teams Decapitalized | |
// @namespace http://www.reddit.com/u/undergroundmonorail | |
// @include http://tagpro-*.koalabeast.com* | |
// @include http://tangent.jukejuice.com* | |
// @exclude http://tagpro-*.koalabeast.com/groups/* | |
// @exclude http://tangent.jukejuice.com/groups/* | |
// @license WTFPL | |
// @author monorail | |
// @version 1.1.0 |
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 Speech To Text | |
// @namespace http://www.reddit.com/u/undergroundmonorail | |
// @description Say a message out loud to say it into chat. | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://maptest.newcompte.fr:* | |
// @include http://justletme.be:* | |
// @license MIT | |
// @author monorail |
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 Cursor Hider | |
// @namespace http://www.reddit.com/u/undergroundmonorail | |
// @description Hides the cursor after a specified amount of time with no movement | |
// @include http://tagpro-*.koalabeast.com:* | |
// @include http://tangent.jukejuice.com:* | |
// @include http://maptest.newcompte.fr:* | |
// @include http://justletme.be:* | |
// @license WTFPL; http://www.wtfpl.net/txt/copying/ | |
// @author monorail |
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 Chat Macros Userscript | |
// @namespace http://www.reddit.com/user/contact_lens_linux/ | |
// @description Help your team with quick chat macros. | |
// @include http://tagpro-*.koalabeast.com:* | |
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html | |
// @author steppin, Watball, Some Ball -1, monorail | |
// @version 0.4 | |
// ==/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
#!/bin/python2 | |
def decrypt(message, key): | |
o = [] | |
for c in map(int, message.split()): | |
o.append(c^key % 10) | |
key = str(key) | |
key = int(key[1:] + key[0]) | |
return o |
NewerOlder