// ==UserScript== // @name Antik alias kokotkokot // @namespace fandimefilmu.cz // @version 2025-02-10 // @description Skript sloužící k ignorování antika-kokota v diskuzích na fandimefilmu.cz // @author Karel // @match https://www.fandimefilmu.cz/komentare/* // @icon https://www.fandimefilmu.cz/assets/images/favicon.png // @grant none // ==/UserScript== (function() { 'use strict'; var ignoreList = ["antikantik | Fandíme filmu", "sportysportysporty | Fandíme filmu"]; // Pole jmen k ignorování var count = 0; var comments = document.querySelectorAll(".comment-box"); // Vybere všechny .comment-box comments.forEach(function(comment) { var avatarImg = comment.querySelector(".comment-avatar-box img"); // Najde uvnitř .comment-avatar-box var altText = avatarImg?.getAttribute("alt")?.trim(); // Získá ALT text obrázku if (altText && ignoreList.includes(altText)) { // Ověří, zda je ALT text v seznamu ignorovaných comment.parentNode.removeChild(comment); // Smaže celý .comment-box count++; } }); var text = " | Komentáře jsou bez antika!"; if (count > 0) { text = ' | ' + (parseInt(document.getElementById("num-comments").textContent, 10) - count) + ' - bez antika!'; } document.getElementById("num-comments").textContent += text; })();