NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name AntiPrépubère par SumerTree le bg // @namespace http://tampermonkey.net/ // @version 0.1 // @description Elimine automatiquement les membres les plus faibles du 18-25 // @author SummerTree // @match http://www.jeuxvideo.com/forums/* // @grant none // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.js // ==/UserScript== (function() { 'use strict'; $( document ).ready(function() { var elt = $('.conteneur-message').find('.bloc-contenu').find('.txt-msg'); var contenu = elt.first().html().toLowerCase(); var titre = $('#bloc-title-forum').html().toLowerCase(); var reg = []; reg.push('post ou '); reg.push('poste ou '); var doit = false; var photo = false; for(var k=0;k<reg.length;k++){ if(contenu.indexOf(reg[k]) != -1 ){ doit = true; } } if(titre.indexOf('photo') != -1 && contenu.indexOf('noelshack') == -1){ doit = true; photo = true; } if(doit){ $('.picto-msg-exclam').first().click(); setTimeout(function(){ $('#signalement_motif').val(18); if(photo){ $('#signalement_commentaire').val("Sans photo, le topic n'a aucune justification d'exister."); }else{ $('#signalement_commentaire').val("Ce collégien ne respecte pas la charte du forum 18-25, l'élite de la nation."); } setTimeout(function(){ $('#recaptcha-anchor-label').click(); }, 2000); }, 500); } }); })();