Steam Auto-Confirm SSA Checkbox

Automatically click the SSA confirm checkbox

// ==UserScript==
// @name         Steam Auto-Confirm SSA Checkbox
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Automatically click the SSA confirm checkbox
// @author       DarthYoshiBoy
// @match        https://store.steampowered.com/account/registerkey*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=steampowered.com
// @grant        none
// @license      MIT
// ==/UserScript==

window.addEventListener('load', function() {
    var links = document.querySelectorAll('input[name="accept_ssa"]');
    for (var check = 0; check < links.length; check++) {
        links[check].click();
    }
}, false);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址