chrome插件开发资料
开发框架
https://crxjs.dev/vite-plugin/concepts/content-scripts
开发资料
http://yixi.pro/ChromeExtensionDocument/downloads.html
举例
https://gitee.com/baibailaoshi/DouKuaiDownload/tree/master/js
常用api
chrome.runtime.getManifest().content_scripts[0].matcheschrome.downloads.download({url:url,filename:sanitizeFilename(title+".mp4"),conflictAction:"uniquify"//如果文件名冲突,自动修改文件名以避免冲突}, function(downloadId) {if(chrome.runtime.lastError) {console.error(chrome.runtime.lastError);} else {console.log("Download started with ID :", downloadId);}})