Skip Steam Age Check

Skip the age check on the Steam website

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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)