您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hides the comments on Crunchyroll and VRV shows. Avoid the temptation to look and inevitably stress out!
当前为
- /* ==UserStyle==
- @name Crunchyroll + VRV - Hide Comments
- @version 1.0.0
- @description Hides the comments on Crunchyroll and VRV shows. Avoid the temptation to look and inevitably stress out!
- @author XerBlade
- @homepage https://greasyfork.org/en/users/761164-xerblade
- @namespace https://greasyfork.org/users/761164
- ==/UserStyle== */
- @-moz-document domain("crunchyroll.com") {
- .guestbook.comments.box,
- #showview_content_comments,
- #showview_content_reviews,
- #main_tab_discussions,
- #main_tab_reviews {
- display: none;
- }
- }
- @-moz-document url-prefix("https://vrv.co/watch/") {
- .comments-container,
- a.tab-button[href='#comments'] {
- display: none;
- }
- }