Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "SnapThePrice: Real-time Price Tracker & AI Shopping Assistant",
"description": "AI-Powered Real-time Lowest Price Finder",
"version": "1.2.1",
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"permissions": [
"storage",
"unlimitedStorage",
"tabs",
"activeTab",
"cookies",
"webRequest",
"alarms",
"sidePanel"
],
"host_permissions": [
"*:\/\/*\/*"
],
"action": [],
"background": {
"service_worker": "background.js"
},
"side_panel": {
"default_path": "main.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_end",
"js": [
"content-scripts\/button.js"
]
},
{
"matches": [
"*:\/\/*.snaptheprice.com\/*"
],
"run_at": "document_start",
"js": [
"content-scripts\/ext.js"
]
},
{
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_start",
"js": [
"content-scripts\/parse.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content-scripts\/button.css"
],
"matches": [
"*:\/\/*\/*"
]
}
]
}