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",
"$schema": "https:\/\/json.schemastore.org\/chrome-manifest",
"name": "Amazon Variation Price Checker",
"short_name": "amzvar",
"version": "1.0.1",
"manifest_version": 3,
"description": "Shopping assistant for finding the lowest prices, price history, and filtering product variations on Amazon.",
"homepage_url": "https:\/\/shopecific.com\/amzvar.html",
"icons": {
"16": "icons\/amz2_logo_16.png",
"48": "icons\/amz2_logo_48.png",
"128": "icons\/amz2_logo_128.png"
},
"default_locale": "en",
"background": {
"service_worker": "src\/bg\/background.js"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/*.amazon.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.amazon.com\/*"
],
"js": [
"src\/inject\/inject.js"
],
"css": [
"src\/inject\/inject.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"src\/inject\/inject.css",
"icons\/*"
],
"matches": [
"https:\/\/*.amazon.com\/*"
]
}
],
"action": {
"default_icon": {
"16": "icons\/amz2_logo_16.png",
"48": "icons\/amz2_logo_48.png",
"128": "icons\/amz2_logo_128.png"
},
"default_popup": "src\/options_custom\/popup.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' https:\/\/ssl.google-analytics.com;"
}
}