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": "AI Customer Support Copilot for Intercom, Zendesk, Gorgias, Freshdesk",
"version": "2.97",
"description": "Use an AI agent for customer support within Intercom, Zendesk, Gorgias, Freshdesk, and any other support tool your team is using.",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Click to chat with your AI Agent"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"permissions": [
"sidePanel",
"activeTab",
"storage",
"contextMenus",
"scripting"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
},
{
"matches": [
"*:\/\/app.intercom.com\/a\/*"
],
"js": [
"config.js",
"intercom-content.js"
]
},
{
"matches": [
"*:\/\/*.zendesk.com\/*"
],
"all_frames": true,
"js": [
"config.js",
"zendesk-content.js"
]
},
{
"matches": [
"*:\/\/*.com\/a\/tickets*"
],
"js": [
"config.js",
"freshdesk-content.js"
]
},
{
"matches": [
"*:\/\/*.gorgias.com\/app\/ticket*",
"*:\/\/*.gorgias.com\/app\/views*"
],
"js": [
"config.js",
"gorgias-content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"welcome.html",
"welcome.js",
"logo.png",
"assets\/svgIcon1.svg",
"assets\/svgIcon2.svg"
],
"matches": [
"<all_urls>"
]
}
],
"host_permissions": [
"*:\/\/*.zendesk.com\/*"
]
}