{ "manifest_version": 3, "name": "ThirdEye Meet Recorder", "version": "1.0.0", "description": "Captures Google Meet transcripts and sends them to your ThirdEye knowledge base.", "permissions": [ "activeTab", "storage", "scripting" ], "host_permissions": [ "https://meet.google.com/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": ["https://meet.google.com/*"], "js": ["content.js"], "run_at": "document_idle" } ], "action": { "default_popup": "popup.html", "default_title": "ThirdEye Meet Recorder" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }