Remove YouTube Comments Section

Removes the YouTube comments section

2020-05-11 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==UserScript==
// @name         Remove YouTube Comments Section
// @namespace    !rcs!
// @version      3.0
// @description  Removes the YouTube comments section
// @author       Me
// @match        https://www.youtube.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    function remove() {
        if(document.getElementById("comments") !== undefined && document.getElementById("comments") !== null) {
            document.getElementById("comments").innerHTML = "Comments are hidden by the extension 'Remove Comments Section'"
        }
    }
    remove()
    
    //YouTube might be slow. 
    window.setInterval(remove,500)
})();