163music

播放那些因版权无法播放的云音乐

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         163music
// @namespace    http://ouo.us/
// @version      1.5
// @description  播放那些因版权无法播放的云音乐
// @author       pojtt
// @match        *://music.163.com/*
// @grant        GM_addStyle
// @require      http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
// ==/UserScript==

(function() {
    var song = function() {
        if ($("a.u-btni-play") && $("a.u-btni-play").length>0) {
            $("a.u-btni-play").html('<i>喵阅播放</i>');
            $("a.u-btni-play").attr('title','使用喵阅播放♪');
            $("a.u-btni-play").removeClass('u-btni-play-dis');
            $("a.u-btni-play").attr('onclick',"window.open('http://ouo.us/fm/163/?id="+$("a.u-btni-play").parent().attr("data-rid")+"#min','163','height=478,width=333,top=0,left=0,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no');");
        } else {
            $("em.f-ff2").after('<a title="使用喵阅播放♪" onclick="window.open(\'http://ouo.us/fm/163/?id='+$("a.u-btni-addply").attr("data-res-id")+'#min\',\'163\',\'height=478,width=333,top=0,left=0,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no\');"><img src="//ooo.0o0.ooo/2017/05/09/591159a158823.png"></a>');
        }
    };
    var list = function() {
        if ($(".m-table") && $(".m-table").length>0) {
            GM_addStyle("div[class^='auto-']{display:none}.m-table .js-dis *{color:#5791B5!important}");
            $(".m-table tr.js-dis").each(function(){
                var $ply = $(this).find("span.ply");
                $ply.attr('style','opacity:1;cursor:pointer');
                $ply.attr('title','使用喵阅播放♪');
                $ply.attr('onclick',"window.open('http://ouo.us/fm/163/?id="+$ply.attr("data-res-id")+"#min','163','height=478,width=333,top=0,left=0,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no');");
            });
        }
    };
    var search = function() {
        if ($("#m-search") && $("#m-search").length>0) {
            GM_addStyle("div[class^='auto-']{display:none}.n-srchrst .srchsongst .js-dis *{color:#5791B5!important}.u-page{display:block!important}");
            $("#m-search div.js-dis").each(function(){
                var $ply = $(this).find("a.ply");
                $ply.attr('style','opacity:1;cursor:pointer');
                $ply.attr('title','使用喵阅播放♪');
                $ply.attr('onclick',"window.open('http://ouo.us/fm/163/?id="+$ply.attr("data-res-id")+"#min','163','height=478,width=333,top=0,left=0,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no');");
            });
            $(".u-page a").bind('click', function(){
                window.setTimeout(search,345);
            });
        }
    };
    var binds = function() {
        if (location.href.indexOf('/song')>0) {
            song();
        } else if (location.href.indexOf('/search')>0) {
            window.setTimeout(search,423);
        } else if (location.href.indexOf('/my')>0) {
            window.setTimeout(list,423);
        } else if (location.href.indexOf('/album')>0 || location.href.indexOf('/artist')>0 || location.href.indexOf('/playlist')>0) {
            list();
        }
    };
    binds();
    $(window).bind('hashchange', function() {
        binds();
    });
})();