Import Google Meet captions project and extension backups

This commit is contained in:
Arash_M
2026-06-08 13:30:43 +03:30
commit e99d6fb287
61 changed files with 4126 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
{
"manifest_version": 3,
"name": "Meet caption saver",
"version": "0.1.0",
"description": "Save .srt file of conversation",
"action": {
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"host_permissions": [
"http://meet.google.com/*",
"https://meet.google.com/*"
],
"content_scripts": [
{
"matches": [
"http://meet.google.com/*",
"https://meet.google.com/*"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"logger.js",
"config.js"
],
"matches": [
"http://meet.google.com/*",
"https://meet.google.com/*"
]
}
]
}