MixCloud Download

Simple script that adds a download button on mixcloud.com

目前为 2015-05-03 提交的版本。查看 最新版本

// ==UserScript==
// @name          MixCloud Download
// @version       1
// @description   Simple script that adds a download button on mixcloud.com
// @author        FuSiOn
// @grant         none
// @namespace https://greasyfork.org/users/10999
// ==/UserScript==


$('[m-preview]').each(function(){
	 var container = $(this).parents('.container,.card-elements-container')[0],
	 	 loc = $(this).attr("m-preview")
	   		.replace(/mp3$/,"m4a")
	   		.replace(/previews/,"c\/m4a\/64");
	$('.button-favorite',container).after("<a href='" + loc  + "' class='button card-button button-download cf ng-scope'>Download</a>");
	$('.card-footer',container).css("display","flex");
});