NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Steam review filter // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://steamcommunity.com/app/*/negativereviews/* // @icon https://www.google.com/s2/favicons?domain=steamcommunity.com // @grant none // @license MIT // @run-at document-end // ==/UserScript== var observer = new window.MutationObserver(function(mutations, observer) { mutations.forEach(e => { if (e.target.innerText.match(/(DLC|EULA|policy|agreements|launcher)/i)) { e.target.remove(); } }); }); // https://stackoverflow.com/questions/2844565/is-there-a-javascript-jquery-dom-change-listener/11546242#11546242 observer.observe(document.getElementById('AppHubCards'), { subtree: true, attributes: true //... });