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://greasyfork.org/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);
}