Amplificator / Hide posts by guests

// ==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();

})();