Greasy Fork

Greasy Fork is available in English.

Auto Steam Age Verifier

Lets you set your age so you can skip the Steam Age Verification page.

当前为 2014-06-22 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Auto Steam Age Verifier
// @description  Lets you set your age so you can skip the Steam Age Verification page.
// @version      1.4
// @namespace    VasVadum
// @license      CC-BY-NC
// @include      http://store.steampowered.com/agecheck/*
// @include      https://store.steampowered.com/agecheck/*
// @grant        none
// ==/UserScript==

//Do you want a randomized date instead? Set to True if so.  If not, leave as is and edit the values on line 17, 19, and 21.
var random = False;

//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;

if (random = True) {
    var m = Math.floor((Math.random() * 12) + 1)
    var d = Math.floor((Math.random() * 28) + 1);
    var y = Math.floor((Math.random() * 1996) + 1);
}

//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')));