mirror of
https://github.com/arkorty/B.Tech-Project-III.git
synced 2026-04-19 12:41:48 +00:00
34 lines
720 B
JSON
34 lines
720 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|