NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name JVStickersBlock // @author Benissou // @description Supprimez tous les stickers du forum // @include http://www.jeuxvideo.com/* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js // @require https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js // @version 1.0.0 // @icon http://image.noelshack.com/fichiers/2016/50/1481684643-benissou.gif // @copyright 2016+, Benissou // ==/UserScript== /*jshint multistr: true */ (function() { 'use strict'; function RemoveIMG() { var allMsg = document.querySelectorAll('.txt-msg.text-enrichi-forum :not(.blockquote-jv)'); // select tous les msg sauf les blockquotes for(var i = 0; i < allMsg.length; i++) { [].forEach.call(allMsg[i].querySelectorAll('.img-shack'),function(e){ e.parentNode.removeChild(e); }); } } RemoveIMG(); })();