Sleazy Fork is available in English.

Skip Steam Age Check

Skip the age check on the Steam website

Ekde 2022/10/21. Vidu La ĝisdata versio.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name       		Skip Steam Age Check
// @name:de			Steam Altersprüfung überspringen
// @namespace  		https://greasyfork.org/users/928242
// @version    		1.0
// @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)
// @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==

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)