{ "manifest_version": 3, "name": "ReadMD - 网页转Markdown", "version": "1.0.0", "description": "将网页内容提取并导出为Markdown文件", "permissions": [ "activeTab", "storage", "downloads" ], "host_permissions": [ "" ], "action": { "default_popup": "src/popup/index.html", "default_icon": { "16": "icons/icon16.svg", "48": "icons/icon48.svg", "128": "icons/icon128.svg" } }, "background": { "service_worker": "src/background/index.ts", "type": "module" }, "content_scripts": [ { "matches": [""], "js": ["src/content/index.ts"], "run_at": "document_idle" } ], "options_page": "src/options/index.html", "icons": { "16": "icons/icon16.svg", "48": "icons/icon48.svg", "128": "icons/icon128.svg" } }