豆瓣音乐重定向

重定向豆瓣音乐链接

// ==UserScript==
// @name         豆瓣音乐重定向
// @namespace    http://your.namespace/
// @version      0.1
// @description  重定向豆瓣音乐链接
// @author       You
// @match        https://artist.douban.com/m/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 获取原始路径部分
    var path = window.location.pathname;

    // 判断是否包含 '/m'
    if (path.includes('/m')) {
        // 移除路径中的 '/m'
        path = path.replace('/m', '');

        // 重定向到指定网址
        window.location.href = 'https://site.douban.com' + path;
    }
})();