From HumbleBundle Redeem the Steam Key. Automatically agree to the terms.
目前為
// ==UserScript==
// @name REDEEM STEAM KEY AUTO ACCEPT TERMS
// @name:zh-CN 在 Steam 激活密钥自动同意协议
// @namespace XHXIAIEIN
// @match https://store.steampowered.com/account/registerkey?key=*
// @grant none
// @version 1.0
// @author XHXIAIEIN
// @description From HumbleBundle Redeem the Steam Key. Automatically agree to the terms.
// @description:zh-CN 在 HumbleBundle 激活 STEAM KEY 时,自动同意协议并点击继续,然后关闭页面。
// ==/UserScript==
(function() {
document.querySelector("#accept_ssa").click()
document.querySelector("#register_btn > span").click()
setTimeout("window.close()",1100)
})();