Skip to content

Instantly share code, notes, and snippets.

@The-Quill
Created January 11, 2016 08:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save The-Quill/3af711a52ff6accb2028 to your computer and use it in GitHub Desktop.
Save The-Quill/3af711a52ff6accb2028 to your computer and use it in GitHub Desktop.
// ==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