43 lines
801 B
JSON
43 lines
801 B
JSON
{
|
|
"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/*"
|
|
]
|
|
}
|
|
]
|
|
} |