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": "Caseloop",
"version": "1.0.3",
"description": "Copilot for Caseloop Desktop App",
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_title": "Copilot for Caseloop Desktop App"
},
"side_panel": {
"default_path": "sidebar.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/outlook.live.com\/*",
"https:\/\/outlook.office.com\/*",
"https:\/\/outlook.office365.com\/*",
"https:\/\/mail.google.com\/*"
],
"js": [
"content.bundle.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"activeTab",
"scripting",
"sidePanel",
"tabs"
],
"host_permissions": [
"https:\/\/outlook.office.com\/*",
"https:\/\/outlook.office365.com\/*",
"https:\/\/outlook.live.com\/*",
"https:\/\/mail.google.com\/*",
"http:\/\/localhost:4000\/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"optional_permissions": [
"microphone"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}