Crunchyroll + VRV - Hide Comments

Hides the comments on Crunchyroll and VRV shows. Avoid the temptation to look and inevitably stress out!

当前为 2021-04-17 提交的版本,查看 最新版本

  1. /* ==UserStyle==
  2. @name Crunchyroll + VRV - Hide Comments
  3. @version 1.0.0
  4. @description Hides the comments on Crunchyroll and VRV shows. Avoid the temptation to look and inevitably stress out!
  5. @author XerBlade
  6. @homepage https://greasyfork.org/en/users/761164-xerblade
  7. @namespace https://greasyfork.org/users/761164
  8. ==/UserStyle== */
  9.  
  10. @-moz-document domain("crunchyroll.com") {
  11.  
  12. .guestbook.comments.box,
  13. #showview_content_comments,
  14. #showview_content_reviews,
  15. #main_tab_discussions,
  16. #main_tab_reviews {
  17. display: none;
  18. }
  19. }
  20.  
  21. @-moz-document url-prefix("https://vrv.co/watch/") {
  22. .comments-container,
  23. a.tab-button[href='#comments'] {
  24. display: none;
  25. }
  26. }