您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
For those who would like to download music from web page rather than electron based desktop client.
// ==UserScript== // @name 恢复虾米网页下载 // @namespace https://nich.work // @version 0.3 // @description For those who would like to download music from web page rather than electron based desktop client. // @author You // @match http://www.xiami.com // @match http://www.xiami.com/* // @grant unsafeWindow // ==/UserScript== (function() { 'use strict'; unsafeWindow.xm_download = function(id, type, ele) { if (type && type == 'song') { var pare = ele.parentNode.parentNode.parentNode; if (pare) { var data = pare.getAttribute('data-json'); data = JSON.parse(decodeURIComponent(data)); data.id = id; selectDownlodQuality(data); return; } } else { var url = 'http://www.xiami.com/download/pay?id=' + encodeURIComponent(id); window.open(url); } }; unsafeWindow.selectDownlodQuality = function(data) { var ht, warm, lowht, highht; if (data.LOW == 'FREE') { lowht = '<li style="cursor:pointer" onclick="prepareZipx(\'song\', ' + data.id + ', 1)" class="item"><span style="color:#f60;margin-right:5px;">⬇</span>流畅品质</li>'; } else if (data.LOW == 'NEED_PAY') { lowht = '<li style="cursor:pointer" onclick="buyMusic(\'song\', ' + data.id + ', \'下载\');" class="item"><span style="color:#f60;margin-right:5px;">⬇</span><b class="identities ident-small">付费</b>流畅品质</li>'; } else { lowht = ''; } if (data.HIGH == 'FREE') { highht = '<li style="cursor:pointer" onclick="prepareZipx(\'song\', ' + data.id + ', 2)" class="item"><span style="color:#f60;margin-right:5px;">⬇</span>高品质</li>'; } else if (data.HIGH == 'NEED_PAY') { highht = '<li style="cursor:pointer" onclick="buyMusic(\'song\', ' + data.id + ', \'下载\');" class="item"><span style="color:#f60;margin-right:5px;">⬇</span><b class="identities ident-small">付费</b>高品质</li>'; } else { highht = ''; } ht = '<h3>选择下载的品质</h3>' + '<div class="dialog_content dialog-downlod-music">' + '<ul class="cklist">' + lowht + highht + '</ul>' + '<a class="Closeit" onclick="closedialog();" title="" href="javascript:void(0);">关闭</a>'; showDialog('', ht); }; unsafeWindow.downloadalbum = function(id, type, me) { if (!$.cookie('user')) { showDialog('/member/poplogin'); return; } if (me) { var downloadstatus = me.getAttribute('data-downloadstatus'); // 0 不提供服务, 1 免费, 2 付费 if (downloadstatus == '0') { checkAlbumPermission('download'); return; } if (downloadstatus && downloadstatus == '2') { buyMusic('album', id, '下载'); return; } } prepareZipx('album', id); return; }; })();