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": "SHOPLYTICS \u2013 Shopping Analytics & Expense Tracker",
"version": "0.2.1",
"description": "Track Amazon, Blinkit & Zepto spending with a private shopping analytics and expense tracker. No login required.",
"permissions": [
"storage",
"notifications",
"scripting",
"activeTab"
],
"host_permissions": [
"https:\/\/blinkit.com\/*",
"*:\/\/*.zepto.com\/*",
"*:\/\/www.amazon.in\/*",
"*:\/\/www.amazon.com\/*",
"*:\/\/www.amazon.ca\/*",
"*:\/\/www.amazon.co.uk\/*"
],
"background": {
"service_worker": "src\/background\/service-worker.js",
"type": "module"
},
"action": {
"default_popup": "src\/ui\/popup\/popup.html",
"default_title": "Shoplytics",
"default_icon": {
"16": "assets\/icons\/icon-16.png",
"32": "assets\/icons\/icon-32.png",
"48": "assets\/icons\/icon-48.png",
"128": "assets\/icons\/icon-128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/blinkit.com\/*"
],
"js": [
"src\/platforms\/quick-commerce\/blinkit\/interceptor.js"
],
"world": "MAIN",
"run_at": "document_start"
},
{
"matches": [
"https:\/\/blinkit.com\/*"
],
"js": [
"src\/platforms\/quick-commerce\/blinkit\/bridge.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/*.zepto.com\/*"
],
"js": [
"src\/platforms\/quick-commerce\/zepto\/interceptor.js"
],
"world": "MAIN",
"run_at": "document_start"
},
{
"matches": [
"*:\/\/*.zepto.com\/*"
],
"js": [
"src\/platforms\/quick-commerce\/zepto\/bridge.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "assets\/icons\/icon-16.png",
"32": "assets\/icons\/icon-32.png",
"48": "assets\/icons\/icon-48.png",
"128": "assets\/icons\/icon-128.png"
}
}