google-meet-captions-regex/manifest.json

39 lines
743 B
JSON
Raw Normal View History

2020-09-07 16:08:36 +02:00
{
2020-09-07 16:34:55 +02:00
"manifest_version": 2,
"name": "Google Meet Caption Regex",
2020-09-22 05:55:00 +02:00
"version": "1.4",
2020-09-07 16:34:55 +02:00
"description": "Send a notification when a caption in Google Meet matches a certain regex.",
2020-09-08 12:02:04 +02:00
"homepage_url": "https://gitlab.com/ceda_ei/google-meet-captions-regex",
2020-09-09 08:02:13 +02:00
"permissions": [
2020-09-22 05:55:00 +02:00
"background",
2020-09-09 08:02:13 +02:00
"notifications",
2020-09-08 12:02:04 +02:00
"storage"
],
2020-09-07 16:34:55 +02:00
"icons": {
"48": "icons/gmcr.svg",
"96": "icons/gmcr.svg"
},
2020-09-08 12:02:04 +02:00
"browser_action": {
"default_icon": "icons/gmcr.svg",
"default_title": "Google Meet Caption Regex",
"default_popup": "popup/build/index.html"
},
"background": {
"scripts": ["background.js"]
},
2020-09-07 16:34:55 +02:00
"content_scripts": [
{
"matches": ["https://meet.google.com/*"],
"js": ["gmcr.js"]
}
2020-09-15 14:59:44 +02:00
],
2020-09-15 14:59:44 +02:00
"web_accessible_resources": ["static/*"]
2020-09-07 16:08:36 +02:00
}