// ==UserScript== // @name Youtube MP3 Download Button // @namespace http://ninjasunite.com // @version 1.0 // @description Adds a MP3 Download button next to the subscribe button, thanks to youtubeinmp3 for their simple download service (http://youtubeinmp3.com/api/). Based off magnus's youtube2mp3 code. Just used something different as it wont open another tab. // @match http*://www.youtube.com/* // @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js // @copyright 2013+, Soulweaver // @downloadURL none // ==/UserScript== var linkPath ='http://youtubeinmp3.com/fetch/?video='+encodeURIComponent(document.URL)+"&hq=1"; $( ' MP3 Download').insertBefore( "#watch7-views-info" );