There are 3 previous versions of this script.
// ==UserScript==
// @name Ubuntu.it Forum Kill 3d
// @namespace http://
// @description Simple kill3d
// @include http://forum.ubuntu-it.org/*
// ==/UserScript==
var TitleOf3d= new Array();
var x;
TitleOf3d[0]="un post al giorno da qui all'eternità"; // 21/11/09
TitleOf3d[1]="mutande"; // 21/11/09
TitleOf3d[2]="[Desktop] I vostri desktop 3 - (evitare spam)" ; // 21/11/09
var nodes = document.evaluate(
//which href nodes in the document contain a title?
"//a[@href]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
//search through them...
for (var i = 0; i < nodes.snapshotLength; i++) {
var node = nodes.snapshotItem(i);
for (x in TitleOf3d) {
// ...for our culprit...
if (node.innerHTML.indexOf(TitleOf3d[x]) > -1) {
//...and set culprit's article visibility to 'none' and you don't have to see him/her/it anymore.
node.parentNode.parentNode.style.display = "none";
}
}
}