NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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(); });