// ==UserScript==
// @name debaty.net
// @namespace debaty
// @description Skryti prispevku vybranych uzivatelu na debaty.net
// @include http://debaty.net/*
// @version 1
// @grant none
// ==/UserScript==
// type usernames to hide
var blockedUsers = ["MaSo" , "šamponek"];
$( document ).ready(function() {
hideBlockedUsers();
});
function hideBlockedUsers() {
//hide threads
$('.text-overflow').each(function(i, obj) {
var nickElement = $(this).find('a:first');
var nick = nickElement.html();
if (isBlocked(nick)){
nickElement.parent().parent().css('display', 'none');
}
});
// hide posts
$('.details small:first-child').each(function(i, obj) {
var nickElement = $(this).find('a:first');
var nick = nickElement.html();
if (isBlocked(nick)){
var postElement = nickElement.parent().parent().parent().find('div:first');
var postContent = postElement.html();
postElement.empty();
postElement.append(detrollizePostContent(postContent))
}
});
$('div.detrollizer').detrollize();
}
function isBlocked(login) {
for (var i = 0 ; i < blockedUsers.length; i++){
if (blockedUsers[i] === login) {
return true;
}
}
return false;
}
function detrollizePostContent(content) {
return '<div class="detrollizer" style="display : none">' + content + '</div>'
}
(function($) {
$.fn.detrollize = function(settings) {
settings = jQuery.extend({
text: 'Detrollized!'
},settings);
this
.wrap('<div class="spoiler-wrapper" />')
.parent()
.prepend(
$('<div class="spoiler_title">')
.click(function() {
$(this).parent().toggleClass('spoiler-expanded');
$(this).next('.detrollizer').slideToggle();
})
.text(settings.text)
)
return this;
};
})(jQuery);
Nový skriptík, který používá upravený tag spoiler místo skrývání celých příspěvků...