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": "ListingAI for Amazon Sellers",
"version": "1.0.0",
"description": "Write high-converting listings in seconds, not hours.",
"permissions": [
"sidePanel",
"storage"
],
"host_permissions": [
"*:\/\/sellercentral.amazon.com\/*",
"*:\/\/sellercentral.amazon.co.uk\/*",
"*:\/\/sellercentral.amazon.de\/*",
"*:\/\/sellercentral.amazon.co.jp\/*",
"*:\/\/sellercentral.amazon.ca\/*"
],
"background": {
"service_worker": "background.js"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/sellercentral.amazon.com\/*",
"*:\/\/sellercentral.amazon.co.uk\/*",
"*:\/\/sellercentral.amazon.de\/*",
"*:\/\/sellercentral.amazon.co.jp\/*",
"*:\/\/sellercentral.amazon.ca\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"action": {
"default_icon": "icons\/icon.png",
"default_title": "ListingAI"
},
"icons": {
"16": "icons\/icon.png",
"32": "icons\/icon.png",
"48": "icons\/icon.png",
"128": "icons\/icon.png"
}
}