Skip to content

Instantly share code, notes, and snippets.

@nmeylan
Created August 29, 2018 09:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nmeylan/4d6ccab3b79ed2ea1bfbd38b27e1d0fc to your computer and use it in GitHub Desktop.
Save nmeylan/4d6ccab3b79ed2ea1bfbd38b27e1d0fc to your computer and use it in GitHub Desktop.
Audio only youtube
$(document).ready(function() {
$("ytd-thumbnail").remove();
$("img").remove();
$("ytd-topbar-logo-renderer").remove();
$(".html5-video-container").remove()
})
$(document).scroll(function() {
$("ytd-thumbnail").remove();
$("img").remove();
$("ytd-topbar-logo-renderer").remove();
$("yt-formatted-string").remove();
})
{
"name": "Youtube audio only",
"version": "1.0",
"description": "Youtube audio only",
"manifest_version": 2,
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"js": ["jquery.min.js","main.js"]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment