{ "manifest_version": 3, "name": "__MSG_extName__", "version": "1.0.0", "default_locale": "en", "description": "__MSG_extDesc__", "permissions": [ "desktopCapture", "activeTab", "downloads", "scripting", "storage", "offscreen", "notifications" ], "host_permissions": [ "" ], "background": { "service_worker": "src/background/index.ts", "type": "module" }, "content_scripts": [ { "matches": [""], "js": ["src/content/index.ts"], "run_at": "document_start" } ], "action": { "default_popup": "src/popup/index.html", "default_title": "__MSG_tooltipOff__", "default_icon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }