Skip to content

Instantly share code, notes, and snippets.

@Jack5079
Last active June 22, 2020 03:05
Show Gist options
  • Select an option

  • Save Jack5079/d0722653e3a08d22c9f22b4d3e8b2118 to your computer and use it in GitHub Desktop.

Select an option

Save Jack5079/d0722653e3a08d22c9f22b4d3e8b2118 to your computer and use it in GitHub Desktop.
download
const div = document.createElement('div')
div.innerHTML = `
<paper-button noink="" class="style-scope ytd-subscribe-button-renderer" role="button" tabindex="0" animated="" elevation="0" aria-disabled="false" aria-label="Download to your PC" style="background: blue"><!--css-build:shady--><!--css-build:shady-->
<yt-formatted-string class="style-scope ytd-subscribe-button-renderer">Download</yt-formatted-string>
</paper-button>
`
const [button] = div.children
document.querySelector('ytd-subscribe-button-renderer').appendChild(button)
button.innerText = 'Download'
button.addEventListener('click', ()=>location.href='https://projectlounge.pw/ytdl/download?url=https://youtube.com/'+encodeURIComponent(location.search))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment