fix: background 用 saveAs 下载,兼容下载前询问设置

原版插件模式:采集和下载在 background 同一 async 函数中执行,
background 上下文一直活着,saveAs 弹框不会被 popup 关闭打断。
This commit is contained in:
李进
2026-07-27 15:23:32 +08:00
parent 06e63fbe3e
commit 0ce890f45e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ async function exportPptx() {
if (!dlResult || !dlResult.ok) throw new Error(dlResult?.error || '下载失败');
setProgress(100, '导出完成');
setResult('success', '已下载到 Downloads/web-to-ppt/');
setResult('success', '导出完成');
} catch (error) {
setProgress(0, error.message || String(error));