点击播放,右键下载
// ==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);
};
}();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址