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 fuerzzz1
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Hide posts by fuerzzz1
// @author Amplificator
// @license MIT
// @match https://*.hardwareonline.dk/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
$('.t47-svar-top').find('b:contains("fuerzzz1")').parent().parent().parent().hide();
})();