网页媒体下载

1、开发者工具,找到媒体地址,比如MP3_URL.mp3

2、把媒体地址替换到MP3_URL下面代码中,然后把代码在Console中执行


fetch("MP3_URL").then(r=>r.blob()).then(b=>{var a=document.createElement("a");a.href=URL.createObjectURL(b);a.download="a.mp3";a.click()})