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",
"name": "Transcriptor (Early Preview)",
"version": "1.0.0",
"manifest_version": 3,
"description": "Your AI meeting Copilot",
"side_panel": {
"default_path": "sidepanels\/sidepanel.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"js": [
"content.js"
],
"run_at": "document_end",
"matches": [
"https:\/\/meet.google.com\/*"
],
"exclude_matches": [
"https:\/\/meet.google.com\/"
]
}
],
"permissions": [
"storage",
"downloads",
"sidePanel",
"cookies",
"scripting"
],
"host_permissions": [
"https:\/\/meet.google.com\/*",
"https:\/\/www.googleapis.com\/*",
"https:\/\/meeting-transcript-backend.onrender.com*",
"http:\/\/localhost:3000\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Transcriptor",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}
}