// ==UserScript== // @name 歌曲宝全能下载助手 (终极优化版) // @namespace http://tampermonkey.net/ // @version 5.0 // @description 在歌曲宝搜索结果页面添加直链下载,拦截弹窗,下载歌词并嵌入封面图 // @author You // @match https://www.gequbao.com/s/* // @match https://www.gequbao.com/music/* // @grant GM_setValue // @grant GM_getValue // @grant GM_xmlhttpRequest // @grant GM_notification // @grant GM_download // @require https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js // @require https://cdn.jsdelivr.net/npm/jsmediatags@3.9.7/dist/jsmediatags.min.js // ==/UserScript== (function() { 'use strict'; // 配置 const CONFIG = { defaultDownloadType: GM_getValue('download_type', 'direct'), downloadLrc: GM_getValue('download_lrc', false), embedCover: GM_getValue('embed_cover', true) // 新增:嵌入封面开关 }; // 主初始化函数 function init() { if (window.location.pathname.startsWith('/s/')) { // 搜索结果页面:添加下载控制面板和链接 addDownloadControlPanel(); addDirectDownloadLinks(); } else if (window.location.pathname.startsWith('/music/')) { // 歌曲详情页面:增强下载按钮功能 enhanceMusicPage(); } } // === 功能1: 为搜索结果页面添加控制面板 === function addDownloadControlPanel() { if ($('#download-control-panel').length > 0) return; const panelHtml = `