Greasy Fork is available in English.

中小学音乐教材音频下载

点击播放,右键下载

// ==UserScript==
// @name         中小学音乐教材音频下载
// @namespace    rymusic.taozhiyu.gitee.io
// @version      0.1
// @description  点击播放,右键下载
// @author       涛之雨
// @match        https://www.rymusic.art/*
// @icon         https://www.rymusic.art/k12/favicon.ico
// @grant        none
// @license      MIT
// ==/UserScript==
!function() {
    "use strict";
    window.oncontextmenu = function(e){
        e.preventDefault();
        var t = document.querySelector("#music-audio");
        t && function(e, t) {
            var n = document.createElement("a");
            n.href = e;
            n.setAttribute("download", t);
            n.style.display = "none";
            document.body.appendChild(n);
            n.click();
            document.body.removeChild(n);
        }(t.src, document.querySelector(".ant-modal-title").innerText);
    };
}();