{ "manifest_version": 3, "name": "Transly", "version": "0.1.0", "description": "极简直译 Chrome 插件", "permissions": ["storage", "contextMenus", "activeTab", "scripting"], "host_permissions": [""], "background": { "service_worker": "background.js" }, "icons": { "16": "icons/icon16.png", "32": "icons/icon32.png", "48": "icons/icon48.png", "128": "icons/icon128.png" }, "action": { "default_title": "Transly", "default_icon": { "16": "icons/icon16.png", "32": "icons/icon32.png" }, "default_popup": "popup.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_idle" } ] }