Greasy Fork is available in English.

虾米旧版链接替换

虾米旧版链接替换。

// ==UserScript==
// @name         虾米旧版链接替换
// @description  虾米旧版链接替换。
// @version      0.1
// @author       You
// @namespace https://greasyfork.org/zh-CN/scripts/389285
// @include      http*://emumo.xiami.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    $('a').each(function(){
        var href = $(this).attr('href');
        if(href){
            href = href.replace('www.xiami.com','emumo.xiami.com');
            $(this).attr('href',href);
        }
    });
})();