NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name LOGOUT.HU - Kiválasztott felhasználó hozzászólásainak elrejtése // @namespace http://prohardver.hu/tag/supreme7.html // @version 0.3 // @description A kiválasztott felhasználók hozzászólásainak elrejtése az összes fórumtémában // @author Supreme7 // @license MIT // @include *logout.hu/tema/* // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== /* jshint -W097 */ 'use strict'; //////////////////////////////// /// ADD MEG A BLOKKOLT FELHASZNÁLÓK NEVEIT //////////////////////////////// var disabled_users = ["felhasználó1", "felhasználó2"]; $(document).ready(function() { $(".face").each(function() { var nick = $(this).find("b").text(); if (jQuery.inArray(nick, disabled_users) != -1) { var msgId = $(this).parent().attr("id"); $(this).parent().before("<div class='box' style='margin: 5px 0 !important;'><h4 style='display: block;font-weight: normal;background: #ce9f6e !important;color: #4b4118 !important;'>[ " + msgId + " ] <b>" + nick + "</b> hozzászólása eltávolítva! <a href='#!' data-msgid='" + msgId + "' style='color: #b33300 !important; float: right !important;' class='show_removed_btn'>Megjelenítés</a></h4></div>"); $(this).parent().toggle(); } }); $(".show_removed_btn").click(function() { $(this).text(function(i, text) { return text === "Megjelenítés" ? "Elrejtés" : "Megjelenítés"; }) var msg_show_id = $(this).data("msgid"); $("#" + msg_show_id + "").toggle().css("background", "rgba(218, 109, 56, 0.15)"); }); });