Auto Accept Steam Subscriber Agreement Checkbox

Automatically clicks the "I agree to the terms of the Steam Subscriber Agreement" checkbox when trying to redeem a key on the steam redeem key page

Від 14.08.2021. Дивіться остання версія.

    // ==UserScript==
    // @name        Auto Accept Steam Subscriber Agreement Checkbox
    // @namespace   UnmetPlayer
    // @description Automatically clicks the "I agree to the terms of the Steam Subscriber Agreement" checkbox when trying to redeem a key on the steam redeem key page
    // @match       https://store.steampowered.com/account/registerkey?key=*
    // @version     1.0
    // @author      UnmetPlayer
    // @grant       none
    // ==/UserScript==
     
    (function() {
        document.querySelector("#accept_ssa").click()
        document.querySelector("#register_btn > span").click()
        setTimeout("window.close()",1100)
    })();