-
-
Save sanchomuzax/4160910 to your computer and use it in GitHub Desktop.
SalsaTune Youtube Download Link
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
jQuery(function() { | |
jQuery('iframe').each(function(index, element) { | |
var elm = jQuery(element); | |
if (elm.attr('src').match(/youtube/)) { | |
var code = elm.attr('src').replace(/http:\/\/[^\/]+\/[^\/]+\/([^\/]+)\?.*/, "$1"); | |
var link = jQuery('<a>'); | |
link.html('<b><br>[HQ] mp3 download with AudioThief...</b>').attr('href', "http://www.audiothief.com/xx-xx/Video/PluginConvert/" + code); | |
elm.after(link); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment