Greasy Fork is available in English.
通过自动填写 PIN 码并提交,实现在浏览器中自动退出 Steam 家庭监护的状态。
当前为
// ==UserScript==
// @name 自动填写并提交 Steam 家庭监护 PIN
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 通过自动填写 PIN 码并提交,实现在浏览器中自动退出 Steam 家庭监护的状态。
// @author Ne0
// @include http*://*.steampowered.com/*
// @include http*://steamcommunity.com/*
// @include http*://*.steamcommunity.com/*
// @grant none
// ==/UserScript==
(function () {
"use strict";
var pin = "pin"; // 在这里填写您的 PIN
if(document.getElementById("steam_parental_password_box")!=null && pin == "pin"){
// username check
alert("【自动退出 Steam 家庭监护脚本】\n 请编辑脚本并填写您的 PIN");
return false;
}
document.getElementById("steam_parental_password_box").value = pin;
SubmitForm();
})();