Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "MeetAlert",
"version": "1.2.3",
"description": "Monitor captions for specific words in Google Meet and take actions based on them.",
"permissions": [
"storage",
"tabCapture",
"offscreen",
"activeTab"
],
"host_permissions": [
"https:\/\/meet.google.com\/*",
"https:\/\/typerbackend.onrender.com\/*",
"http:\/\/localhost:8081\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/meet.google.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"options_page": "options.html",
"web_accessible_resources": [
{
"resources": [
"offscreen.html"
],
"matches": [
"https:\/\/meet.google.com\/*"
]
}
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "favicon.png",
"48": "favicon.png",
"128": "favicon.png"
}
}