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": "Etsy Customer Service AI Bot",
"description": "An AI tool to generate personalized responses to customer inquiries for Etsy sellers",
"version": "3.04",
"action": {
"default_popup": "login.html",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"permissions": [
"storage",
"scripting",
"activeTab"
],
"host_permissions": [
"https:\/\/api.msgassistant.com\/api\/generate-response",
"https:\/\/api.msgassistant.com\/api\/signup",
"https:\/\/www.etsy.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.etsy.com\/*"
],
"js": [
"content.js"
],
"css": []
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"icon.png"
],
"matches": [
"<all_urls>"
]
}
]
}