Hide all but the first 5 Youtube comments (number configurable)
// ==UserScript== // @name First N Youtube Comments // @namespace http://tampermonkey.net/ // @version 1.1 // @description Hide all but the first 5 Youtube comments (number configurable) // @author thebestlettuce [email protected] // @match https://www.youtube.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; let num_comments = 5; document.head.append(Object.assign(document.createElement("style"), { type: "text/css", textContent: `div ytd-comment-thread-renderer:nth-child(n+${num_comments + 1}) { visibility: hidden; }` })) })();