DecentM / Force show Steam reviews

// ==UserScript==
// @name         Force show Steam reviews
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Fixes blank reviews on Steam
// @author       DecentM
// @match        https://store.steampowered.com/app/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function(window, document, undefined) {
    'use strict';

    const css = `.user_reviews_container .filtered_text {visibility: inherit !important;}`
    const $style = document.createElement('style')

    $style.innerHTML = css
    $style.id = 'decentm_no-reviews-fix-stylesheet'

    window.addEventListener('load', () => {
       document.body.appendChild($style)
    })
})(window, window.document);