Bypass Steam community content age warning screen

Bypass the "Content may not be appropriate for all ages" confirmation screen

  1. // ==UserScript==
  2. // @name Bypass Steam community content age warning screen
  3. // @description Bypass the "Content may not be appropriate for all ages" confirmation screen
  4. // @author anon
  5. // @match https://steamcommunity.com/*
  6. // @grant unsafeWindow
  7. // @run-at document-start
  8. // @license MIT
  9. // @version 0.0.1.20230127213432
  10. // @namespace https://greasyfork.org/users/716107
  11. // ==/UserScript==
  12.  
  13. // version: 2013.1.28
  14.  
  15. // Remove the content age checker (which run during document loading)
  16. Object.defineProperty(unsafeWindow, "CheckAppAgeGateBypass", { value: () => {}, writable: false });