Steam auto redeem key

Automatically accepts the agreement and activates a steam key, when opening a register key url.

  1. // ==UserScript==
  2. // @name Steam auto redeem key
  3. // @description Automatically accepts the agreement and activates a steam key, when opening a register key url.
  4. // @namespace https://gf.qytechs.cn/en/users/10848
  5. // @version 1.0
  6. // @author sergio91pt
  7. // @match https://store.steampowered.com/account/registerkey
  8. // @match https://store.steampowered.com/account/registerkey?*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. document.getElementById('accept_ssa').checked = true;
  16.  
  17. if (document.querySelector('input[name="product_key"]').value !== '') {
  18. document.getElementById('register_btn').click();
  19. }
  20. })();

QingJ © 2025

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