您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically clicks the "I agree to the terms of the Steam Subscriber Agreement" checkbox when trying to redeem a key on the steam redeem key page
当前为
// ==UserScript== // @name Auto Accept Steam Subscriber Agreement Checkbox // @namespace UnmetPlayer // @description Automatically clicks the "I agree to the terms of the Steam Subscriber Agreement" checkbox when trying to redeem a key on the steam redeem key page // @match https://store.steampowered.com/account/registerkey?key=* // @version 1.0 // @author UnmetPlayer // @grant none // ==/UserScript== (function() { document.querySelector("#accept_ssa").click() document.querySelector("#register_btn > span").click() setTimeout("window.close()",1100) })();