Skip to content

Instantly share code, notes, and snippets.

@jaredkoontz
Created August 11, 2025 19:28
Show Gist options
  • Select an option

  • Save jaredkoontz/6103cf5258f2d2b88cba6776b5b727ac to your computer and use it in GitHub Desktop.

Select an option

Save jaredkoontz/6103cf5258f2d2b88cba6776b5b727ac to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name remove youtube buttons
// @description removes buttons from the yt ui that are annoying to me
// @version 1.0.0
// @author Jared Koontz
// @match https://www.youtube.com/*
// @grant GM_addStyle
// @run-at document-end
// ==/UserScript==
// possible other values:
// Download
// Share
// Report
GM_addStyle(`
button[aria-label="Ask"],
button[aria-label="Share"],
button[aria-label="Thanks"],
button[aria-label="Clip"] {
display: none !important;
}
`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment