Steam Auto-Confirm SSA Checkbox

Automatically click the SSA confirm checkbox

  1. // ==UserScript==
  2. // @name Steam Auto-Confirm SSA Checkbox
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description Automatically click the SSA confirm checkbox
  6. // @author DarthYoshiBoy
  7. // @match https://store.steampowered.com/account/registerkey*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=steampowered.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. window.addEventListener('load', function() {
  14. var links = document.querySelectorAll('input[name="accept_ssa"]');
  15. for (var check = 0; check < links.length; check++) {
  16. links[check].click();
  17. }
  18. }, false);

QingJ © 2025

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