// ==UserScript== // @name 酷狗音乐MP3下载助手 - 下载状态修复版 // @namespace http://tampermonkey.net/ // @version 4.3.0 // @description 在酷狗音乐网站上监测MP3资源并提供下载功能,文件名格式为"歌曲名-歌手名.mp3",修复下载状态 // @author YourName // @match *://www.kugou.com/* // @match *://*.kugou.com/* // @grant GM_xmlhttpRequest // @grant GM_download // @grant GM_notification // @grant GM_addStyle // @connect * // @connect kg* // @run-at document-start // ==/UserScript== (function() { 'use strict'; // 添加自定义样式 GM_addStyle(` .kg-download-btn { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);...