NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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);