Skip to content

Instantly share code, notes, and snippets.

@Kowiz
Created January 1, 2016 01:42
Show Gist options
  • Save Kowiz/ef591087a63f1486fe0c to your computer and use it in GitHub Desktop.
Save Kowiz/ef591087a63f1486fe0c to your computer and use it in GitHub Desktop.
Gets the Red Herring Badge
// ==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