This commit is contained in:
2026-04-05 00:43:23 +05:30
commit 8be37d3e92
425 changed files with 101853 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
{
"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"
}
}