Created
January 1, 2016 01:42
-
-
Save Kowiz/ef591087a63f1486fe0c to your computer and use it in GitHub Desktop.
Gets the Red Herring Badge
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 Steam Sale Arg - Red Herring Badge | |
// @namespace Kowiz | |
// @version 0.1 | |
// @description Red Herring Badge | |
// @author Kowiz | |
// @match http://store.steampowered.com/app/253750 | |
// @run-at document-end | |
// @grant none | |
// ==/UserScript== | |
jQuery.post( "http://store.steampowered.com/actions/clues", {key: "1v7531"} ).done(function( result ) { | |
if( result && result.url ) | |
window.location = result.url; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment