Download nhạc mp3 zing 320kbps

Download nhạc nhất lượng cao 320kbps tại mp3.zing.vn

当前为 2015-08-29 提交的版本,查看 最新版本

// ==UserScript==
// @name         Download nhạc mp3 zing 320kbps
// @namespace    Phạm Doãn Hiếu ||| FB: https://www.facebook.com/phamdoanhieu
// @version      2.0.0
// @icon         http://static.mp3.zdn.vn/skins/mp3_version3_05/images/new-logo.jpg
// @description  Download nhạc nhất lượng cao 320kbps tại mp3.zing.vn
// @match        http://mp3.zing.vn/bai-hat/*.html*
// @match        http://mp3.zing.vn/album/*.html*
// @match        http://mp3.zing.vn/playlist/*.html*
// @match        http://mp3.zing.vn/nghe-si/*
// @match        http://mp3.zing.vn/tim-kiem/bai-hat.html?q=*
// @copyright    2015+ / Prostar
// @grant        none
// ==/UserScript==
$(function () {
  if (location.pathname.indexOf('/bai-hat/') === 0) {
    $('#tabService').replaceWith('<a id="tabService" href="http://v3.mp3.zing.vn/download/vip/song/' + $('#tabAdd').data('id') + '" class="button-style-1 pull-left fn-tab"><i class="zicon icon-download"></i><span>Tải nhạc 320kbps</span></a>');
  } else {
    $('.fn-dlsong').replaceWith(function () {
      return '<a style="background-color: #444;" title="Tải nhạc 320kbps" class="fn-dlsong" href="http://v3.mp3.zing.vn/download/vip/song/' + $(this).data('item').slice(5) + '"></a>';
    });
  }
});