// ==UserScript== // @name Crunchyroll + VRV - Hide Comments // @namespace https://greasyfork.org/users/761164 // @version 1.0.0 // @description Hides the comments on Crunchyroll and VRV shows. Avoid the temptation to look and inevitably stress out! // @author XerBlade // @grant GM_addStyle // @run-at document-start // @match *://*.crunchyroll.com/* // @match https://vrv.co/watch/* // @downloadURL none // ==/UserScript== (function() { let css = ""; if ((location.hostname === "crunchyroll.com" || location.hostname.endsWith(".crunchyroll.com"))) { css += ` .guestbook.comments.box, #showview_content_comments, #showview_content_reviews, #main_tab_discussions, #main_tab_reviews { display: none; } `; } if (location.href.startsWith("https://vrv.co/watch/")) { css += ` .comments-container, a.tab-button[href='#comments'] { display: none; } `; } if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { const styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();