您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Skip the age check on the Steam website
// ==UserScript== // @name Skip Steam Age Check // @name:de Steam Altersprüfung überspringen // @namespace https://greasyfork.org/users/928242 // @version 1.0.1 // @description Skip the age check on the Steam website // @description:de Überspringen der Altersprüfung auf der Steam-Website // @author Kamikaze (https://github.com/Kamiikaze) // @supportURL https://github.com/Kamiikaze/Tampermonkey/issues // @match https://store.steampowered.com/agecheck/* // @icon https://www.google.com/s2/favicons?sz=64&domain=steampowered.com // @grant none // @run-at document-ready // @license MIT // ==/UserScript== // ==OpenUserJS== // @author Kamikaze // ==/OpenUserJS== setInterval( () => { console.log("Trying to Skip Age check..") const yearSelectEl = document.getElementsByName("ageYear")[0]?.children if (yearSelectEl) { if (yearSelectEl.length < 0) return; // console.log(yearSelectEl.children) for (let i = 0; i < yearSelectEl.length; i++) { const option = yearSelectEl[i] option.removeAttribute('selected') if (option.value == '1999' ) { option.setAttribute('selected', true) ViewProductPage(); console.log("Skipped!") } } } else { ViewProductPage(); console.log("Skipped!") } }, 1000)