您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically agrees to Steam subscriber agreement and activates key. Saves a ton of clicks when activating items from bundles.
/* This work is free. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.*/ /* Read Steam Subscriber Agreement before using this! */ // ==UserScript== // @name Steam auto-activate // @namespace http://ttmyller.azurewebsites.net/ // @license WTFPL; http://www.wtfpl.net/ // @version 0.1 // @description Automatically agrees to Steam subscriber agreement and activates key. Saves a ton of clicks when activating items from bundles. // @author ttmyller // @match *://store.steampowered.com/account/registerkey?* // @icon https://www.google.com/s2/favicons?sz=64&domain=steampowered.com // @grant none // ==/UserScript== (function() { 'use strict'; document.getElementById("accept_ssa").checked = true; document.getElementById("register_btn").click(); })();