🏠 Home 

Hide YouTube Recommandations In Home Page

Time is Precious


Install this script?
// ==UserScript==
// @name         Hide YouTube Recommandations In Home Page
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Time is Precious
// @author       You
// @match        *://www.youtube.com/
// @match        *://www.youtube.com/?*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license      MIT
// ==/UserScript==
(function() {
'use strict';
const newStyle = document.createElement("style")
newStyle.innerHTML = `
.ytd-app.style-scope[role='navigation'], #primary.style-scope.ytd-two-column-browse-r###lts-renderer {
display: none;
}
`
document.head.appendChild(newStyle)
// Your code here...
})();