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": "Amazon Price Finder - Compare Amazon prices on any shopping sites",
"version": "1.0.0",
"description": "Find and compare Amazon prices for products on Walmart, BestBuy, Target, Newegg and More !",
"permissions": [
"storage",
"activeTab",
"tabs"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"config.js",
"product-extractors.js",
"content-universal.js"
],
"css": [
"styles.css"
],
"run_at": "document_end",
"exclude_matches": [
"*:\/\/mail.google.com\/*",
"*:\/\/docs.google.com\/*",
"*:\/\/drive.google.com\/*",
"*:\/\/accounts.google.com\/*",
"*:\/\/github.com\/*",
"*:\/\/stackoverflow.com\/*",
"*:\/\/reddit.com\/*",
"*:\/\/twitter.com\/*",
"*:\/\/x.com\/*",
"*:\/\/facebook.com\/*",
"*:\/\/linkedin.com\/*",
"*:\/\/youtube.com\/*"
]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Find Amazon Price",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}