This removes the Download button on the sidebar along with the button on the watch page.
YouTube - Remove Download Button by magma_craft
Details
Authormagma_craft
LicenseCC Zero
Categoryyoutube
Created
Updated
Size611 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
If you want the userscript version, just use this instead: https://greasyfork.org/en/scripts/454638
Source code
/* ==UserStyle==
@name YouTube - Remove Download Button
@version 0.1
@namespace userstyles.world/user/magma_craft
@description This removes the Download button on the sidebar along with the button on the watch page.
@author magma_craft
@license CC Zero
==/UserStyle== */
@-moz-document domain("youtube.com") {
/* Remove 'Downloads' tab in the guide section */
#endpoint.yt-simple-endpoint.ytd-guide-entry-renderer.style-scope[title="Downloads"] {
display: none;
}
/* Remove 'Download' button under actions */
ytd-download-button-renderer {
display: none;
}
}