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": "Memobot: AI Meeting Notes & Transcripts",
"version": "1.2.4",
"description": "AI-powered transcription, summaries & video recording for meetings and lectures. Supports multiple languages with accuracy.",
"permissions": [
"tabs",
"tabCapture",
"activeTab",
"storage",
"offscreen"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_popup": "src\/popup.html"
},
"default_locale": "en",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"*.js",
"*.css",
"assets\/*",
"requestPermissions.html",
"requestPermissions.js",
"src\/container.html",
"container.js",
"subtitle.js",
"summaryRealtime.js",
"https:\/\/www.google-analytics.com\/analytics.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"all_frames": true,
"js": [
"content.js"
],
"run_at": "document_end",
"matches": [
"*:\/\/docs.google.com\/presentation\/d\/*",
"*:\/\/www.docs.google.com\/presentation\/d\/*"
]
},
{
"all_frames": false,
"js": [
"content.js"
],
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_end"
}
]
}