This is an old revision of the document!
- http://userscripts.org/scripts/show/26062 Scripts updater
- http://www.fbpurity.com - Facebook purifier
- http://userscripts.org/scripts/show/57025 - odstrani reklame na 24ur.com/poptv.si
- slo-tech.com - killfile.js by jure@hehe.si
// ==UserScript==
// @name killfile
// @namespace killfile
// @description slo-tech killfile
// @include http://slo-tech.com/forum/t*
// @include https://slo-tech.com/forum/t*
// @include http://*.slo-tech.com/forum/t*
// @include https://*.slo-tech.com/forum/t*
// ==/UserScript==
var users = ['Thomas', 'mtosev'];
window.addEventListener(
'load',
function () {
var usersRe = '^(' + users.join('|') + ')';
var posts, thisPost;
posts = document.evaluate(
"//div[@class='post even' or @class='post odd']",
document,
null,
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
null);
for (var i = 0; i < posts.snapshotLength; i++) {
thisPost = posts.snapshotItem(i);
if (thisPost.childNodes[0].title.match(usersRe)) {
thisPost.style.display="none";
}
}
},
'true'
);

