NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Hide posts by guests // @namespace http://tampermonkey.net/ // @version 0.1 // @description Hide posts by guests // @author Amplificator // @license MIT // @match https://*.hardwareonline.dk/* // @grant none // ==/UserScript== (function () { 'use strict'; $('.t47-svar-top').find('span:contains("Gæst")').parent().parent().hide(); })();