您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在 HumbleBundle 激活 STEAM KEY 时,自动同意协议并点击继续,然后关闭页面。
// ==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.1 // @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(() => { if (document.querySelector("#error_display").style['display'] == 'none') { window.close() }; }, 1000); })();