Steam review visibility fix

fix steam review invisible problem temporary

// ==UserScript==
// @name         Steam review visibility fix
// @version      0.1
// @description  fix steam review invisible problem temporary
// @author       Allenz
// @match        https://store.steampowered.com/app/*
// @namespace https://gf.qytechs.cn/users/684654
// ==/UserScript==

(function() {
    'use strict';
    // Your code here...
    addGlobalStyle('.filtered_text { visibility:visible !important; }');
})();

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

QingJ © 2025

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