Greasy Fork is available in English.

Automatically Bypass Steam Age Verification

Sets your birthday to 1950 and submits the form.

  1. // ==UserScript==
  2. // @name Automatically Bypass Steam Age Verification
  3. // @description Sets your birthday to 1950 and submits the form.
  4. // @version 1.0.1
  5. // @namespace skeeto
  6. // @license Public Domain
  7. // @include http://store.steampowered.com/agecheck/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function(form) {
  12. form.ageYear.value = 1950;
  13. form.submit();
  14. }(document.querySelector('#agegate_box form')));