Disable community hub age gate

Suppresses the "community content may not be appropriate for all ages" overlay on Steam hubs

目前为 2016-04-02 提交的版本。查看 最新版本

// ==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) {}
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址