Remove YouTube Comments Section

Removes the YouTube comments section

  1. // ==UserScript==
  2. // @name Remove YouTube Comments Section
  3. // @namespace !rcs!
  4. // @version 4.0
  5. // @description Removes the YouTube comments section
  6. // @author Me
  7. // @include *://*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15. //@match and @include don't work. maybe it's browser specific. screw it.
  16. if(window.location.origin.includes("youtube")) {
  17. var msg = "Comments are hidden by the extension 'Remove Comments Section'"
  18.  
  19. function remove() {
  20. if(document.getElementById("comments") !== undefined && document.getElementById("comments") !== null) {
  21. if(document.getElementById("comments").innerHTML != msg)
  22. document.getElementById("comments").innerHTML = msg
  23. }
  24. }
  25. remove()
  26.  
  27. //YouTube might be slow...
  28. window.setInterval(remove,500)
  29. }
  30. })();