Removes the YouTube comments section
当前为
// ==UserScript==
// @name Remove YouTube Comments Section
// @namespace !rcs!
// @version 1.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").innerHTML = "Comments are hidden by the extension 'Remove Comments Section'"
}
}
remove()
})();