Last active
June 22, 2020 03:05
-
-
Save Jack5079/d0722653e3a08d22c9f22b4d3e8b2118 to your computer and use it in GitHub Desktop.
download
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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