missevan 音频下载

missevan M站免鱼干下载音频文件,突破UP主禁止下载限制。(请勿滥用,下载后记得投鱼干支持UP!)

Ekde 2017/07/04. Vidu La ĝisdata versio.

// ==UserScript==
// @name         missevan 音频下载
// @namespace    https://greasyfork.org/users/2646
// @contributionURL http://clso.tk/donate/
// @contributionAmount 6.66
// @version      0.1
// @description  missevan M站免鱼干下载音频文件,突破UP主禁止下载限制。(请勿滥用,下载后记得投鱼干支持UP!)
// @author       CLE
// @match        http://www.missevan.com/sound/player*
// @match        https://www.missevan.com/sound/player*
// @grant        none
// xx@xxrequire      http://cdn.staticfile.org/jquery/1.9.1/jquery.min.js
// ==/UserScript==

$(function(){
	var url = document.location.toString();
	var m = url.match(/^https?:\/\/www\.missevan\.com\/sound\/player\?id=(\d+)$/i);
	if(m){
		var psid = "#pld-sound-" + m[1];
		var mads = "http://static.missevan.com/MP3/" + $(psid).attr("data-soundurl");
		
		$("#download-container").unbind();
		$("#download-btn").attr("href", mads).find("span").text("右键另存");
		//$("#download-btn span").text("右键另存");
		
	}
	
});