Sujet : Le script pour bannir PATTON
Salut, je tiendrai ici le script à jour pour bannir PATTON. C'est plus simple pour le retrouver.
Donc la technique c'est d'installer Tampermonkey sur Chrome, Greasemonkey sur FF ou Violentmonkey sur Opera et d'y c/c le code suivant :
// ==UserScript==
// @name Plus Pur que Pur Asile
// @description Cache les posts indésirables.
// @include http://www.lesitedecuisine.fr/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @namespace http://userscripts.org/scripts/review/181461
// @grant none
// @version 1.0
// ==/UserScript==
var ids = [2507,2100,3200,3204,3217,3218,3219];
$("li > a:first-child").each(function() {
if($(this).attr("href").match(/profile.php\?id=(\d+)$/) && $.inArray(parseInt(RegExp.$1), ids) != -1) {
$(this).closest(".post").hide();
}
});
$("span.sender").each(function() {
if($(this).text().match(/SANS KOUKAILLE/)) {
$(this).parent().hide();
}
});
$("span.sender").each(function() {
if($(this).text().match(/Candy/)) {
$(this).parent().hide();
}
});
$("span.sender").each(function() {
if($(this).text().match(/BARBAPAPA/)) {
$(this).parent().hide();
}
});
$("span.sender").each(function() {
if($(this).text().match(/Паттон/)) {
$(this).parent().hide();
}
});