NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Anti Grifforzer // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match http://www.jeuxvideo.com/forums/* // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; // Your code here... var elems = document.getElementsByClassName('bloc-pseudo-msg'); Array.prototype.forEach.call(elems, function(el) { var zzz = el.innerHTML; if (zzz.search(/.?grifforzer\w+/i) != -1 || zzz.search(/.?Lamy\w+/i) != -1) { el.parentNode.parentNode.parentNode.parentNode.style.display = 'none'; } });