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": "SellThis Analyzer",
"version": "1.0.18",
"description": "Instantly analyze Amazon products, reviews, and competitors with real-time insights\u2014directly in your browser.",
"action": {
"default_popup": "src\/scripts\/popup\/popup.html"
},
"options_ui": {
"page": "src\/scripts\/options\/options.html",
"open_in_tab": true
},
"background": {
"service_worker": "js\/service-worker.js",
"type": "module"
},
"icons": {
"16": "assets\/icon-16.png",
"48": "assets\/icon-48.png",
"128": "assets\/icon-128.png"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"contextMenus"
],
"host_permissions": [
"https:\/\/app.sellthis.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.amazon.com\/*",
"https:\/\/www.amazon.ca\/*",
"https:\/\/www.amazon.com.mx\/*",
"https:\/\/www.amazon.co.uk\/*",
"https:\/\/www.amazon.com.au\/*",
"https:\/\/app.sellthis.com\/*"
],
"js": [
"js\/content.js"
],
"css": [
"assets\/plugins\/amazon-single-product.css"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"js\/content-context-menu.js"
]
}
],
"commands": {
"refresh_extension": {
"suggested_key": {
"default": "Ctrl+Space"
},
"description": "Refresh Extension"
}
},
"web_accessible_resources": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"resources": [
"dist\\js\\index.js",
"dist\\js\\options.js",
"dist\\js\\popup.js",
"dist\\js\\service-worker.js"
]
}
]
}