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

目前為 2021-08-14 提交的版本,檢視 最新版本

    // ==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)
    })();