I am applying Javascript in the address bar, to redirect YouTube video URL to link download "MP3".
Already on link , you need to click the "Convert" button to start the Conversion logo followed by Download .
I've been analyzing the Source Code of the page and I noticed that to start the YouTube Conversion URL it goes to convert.php
and then download.php?id=
.
In other words - It link Download the Youtube video URL - > for
convert.php
- > thendownload.php?id=
to download the "MP3".
Doubt
Would you like to pass this entire process automated to script , without needing the human intervention to click the "Convert" button?
Code
javascript:window.location.href='https://youtubegomp3.com/?u='+encodeURIComponent(location.href)+'&title'+encodeURIComponent(document.title);