stuart.crouch / Steam auto-activate

// ==UserScript==
// @name         Steam auto-activate
// @namespace    https://gist.github.com/stuartcrouch/3cb37368b563fd219093ba7d09b96139
// @version      0.3
// @description  Auto-ticks the I agree and the continue button on steam activation pages
// @author       Stuart Crouch
// @match        https://store.steampowered.com/account/registerkey?*
// @grant        none
// @icon         https://steamcommunity.com/favicon.ico
// @licence      MIT
// ==/UserScript==


$J(document).ready(function()
{
    $J('#accept_ssa').click();
    $J('#register_btn').get(0).click();
});