Created
January 11, 2016 08:13
-
-
Save The-Quill/3af711a52ff6accb2028 to your computer and use it in GitHub Desktop.
This file contains 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 Enable WinterBash 2015 | |
// @namespace http://the-quill.github.io/me/ | |
// @version 0.1 | |
// @description Enable hats! | |
// @author Quill | |
// @match http://*.stackexchange.com/* | |
// @match http://meta.*.stackexchange.com/* | |
// @match http://*.stackexchange.com | |
// @match http://meta.*.stackexchange.com | |
// @match http://meta.stackoverflow.com/* | |
// @match http://stackoverflow.com/* | |
// @match http://stackoverflow.com | |
// @match http://meta.stackexchange.com/* | |
// @match http://meta.stackexchange.com | |
// @grant none | |
// ==/UserScript== | |
/* jshint -W097 */ | |
'use strict'; | |
var hats_script = document.createElement("script"); | |
hats_script.src = "http://cdn-prom.sstatic.net/WinterBash/js/wb2015.js?v=e6c9807481fc"; | |
document.getElementsByTagName("head")[0].appendChild(hats_script); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment