google-meet-captions-regex/manifest.json

39 lines
743 B
JSON

{
"manifest_version": 2,
"name": "Google Meet Caption Regex",
"version": "1.4",
"description": "Send a notification when a caption in Google Meet matches a certain regex.",
"homepage_url": "https://gitlab.com/ceda_ei/google-meet-captions-regex",
"permissions": [
"background",
"notifications",
"storage"
],
"icons": {
"48": "icons/gmcr.svg",
"96": "icons/gmcr.svg"
},
"browser_action": {
"default_icon": "icons/gmcr.svg",
"default_title": "Google Meet Caption Regex",
"default_popup": "popup/build/index.html"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["https://meet.google.com/*"],
"js": ["gmcr.js"]
}
],
"web_accessible_resources": ["static/*"]
}