您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Lets you set your age so you can skip the Steam Age Verification page.
当前为
// ==UserScript== // @name Auto Steam Age Verifier // @description Lets you set your age so you can skip the Steam Age Verification page. // @version 1.3 // @namespace VasVadum // @license CC-BY-NC // @include http://store.steampowered.com/agecheck/* // @include https://store.steampowered.com/agecheck/* // @grant none // ==/UserScript== //In the lines below, please enter the correct information in the value spot. EG "var m = __", any invalid information may result in script failure. //Month var m = 6; //Day var d = 22; //Year var y = 1980; //Do not edit below this line. var mm = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']; (function (form) { form.ageYear.value = y; form.ageMonth.value = mm[m - 1]; form.ageDay.value = d; form.submit(); }(document.querySelector('#agegate_box form')));