Suppresses the "community content may not be appropriate for all ages" overlay on Steam hubs
目前為
// ==UserScript==
// @name Disable community hub age gate
// @namespace steam
// @version 1.0
// @description Suppresses the "community content may not be appropriate for all ages" overlay on Steam hubs
// @author lunboks
// @match *://steamcommunity.com/app/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
"use strict";
var appID = location.pathname.match(/^\/app\/(\d+)/);
if (appID !== null) {
try {
window.sessionStorage.setItem("age_gate_" + appID[1], "true");
} catch (ignore) {}
}
})();