Wednesday, December 7, 2011

Download YouTube To MP3 Button


// ==UserScript==
// @name           YouTube To MP3 Button
// @version        2.1
// @author    NicholasLAranda
// @description    Adds a button underneath the YouTube player for extracting the audio and saving it to a High Quality MP3 file.
// @include        http://youtube.com/watch?v=*
// @include        http://youtube.com/watch?v=*&*
// @include        http://*.youtube.com/watch?v=*
// @include        http://*.youtube.com/watch?v=*&*
// ==/UserScript==

var s = location.href.split("&");
var url=s[0];

document.getElementById('watch-actions').innerHTML += '<style>#button {margin-top: -2.71em; position: relative; left: 28em;} #watch-actions {height: 50px;}</style><div id="button"><a href="http://www.video2mp3.net/index.php?url='+ url +'&hq=1" id="link" title="Extract audio from currently playing video and download into a High Quality MP3 file." class="yt-uix-tooltip-reverse yt-uix-button yt-uix-tooltip" target="_blank">Download As MP3</a></div>';

0 comments:

Post a Comment