NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Filtre Anti-Porno // @namespace filtreantiporno // @description Censure les sujets sur JVC qui parlent de cul en se basant sur certains mots-clés // @include http://www.jeuxvideo.com/forums/* // @include https://www.jeuxvideo.com/forums/* // @include http://m.jeuxvideo.com/forums/* // @version 1 // @grant none // @author Duc // @updateURL https://openuserjs.org/meta/Duc/Filtre_Anti-Porno.meta.js // @downloadURL https://openuserjs.org/install/Duc/Filtre_Anti-Porno.user.js // ==/UserScript== var listesujets = document.getElementsByClassName("lien-jv topic-title"); for (i = 0; i < listesujets.length; i++) { var titresujet = listesujets[i].title; var motscles = /(QLF | khoya | small arm | small arms | schmal armen | picco bras | hella | walabok | haja | petit bras | petits bras | igo | aya | ayaa | ayaaa | ayaaa | ayaaaa | ayaaaaa | ayaaaaaa | ayaaaaaaa | ayaaaaaaaa | ayaaaaaaaaa | paix sur | chofa |)/gi; if(titresujet.match(motscles) && titresujet.indexOf("anti-porno") < 0 && titresujet.indexOf("Anti-Porno") < 0 && titresujet.indexOf("NoPorn") < 0 && titresujet.indexOf("noporn") < 0) { // Si le titre du sujet contient un des mots-clés ci-dessus, avec des exceptions listesujets[i].parentNode.parentNode.style.display = "none"; // On masque le sujet de la liste des sujets } }