Remove YouTube Comments Section

Removes the YouTube comments section

目前为 2020-05-10 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Remove YouTube Comments Section
  3. // @namespace !rcs!
  4. // @version 2.0
  5. // @description Removes the YouTube comments section
  6. // @author Me
  7. // @match https://www.youtube.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15.  
  16. function remove() {
  17. if(document.getElementById("comments") !== undefined) {
  18. document.getElementById("comments").innerHTML = "Comments are hidden by the extension 'Remove Comments Section'"
  19. }
  20. }
  21. remove()
  22. //YouTube might be slow.
  23. window.setInterval(remove,500)
  24. })();