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",
"name": "Asset Store Price Tracker",
"version": "1.0.2",
"description": "Track Unity Asset Store price history and get notified of price drops",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"alarms",
"notifications"
],
"host_permissions": [
"*:\/\/assetstore.unity.com\/*",
"*:\/\/price-tracker-mocha.now.sh\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/assetstore.unity.com\/packages\/*"
],
"js": [
"dependencies\/chart.umd.js",
"dependencies\/moment.min.js",
"dependencies\/chartjs-adapter-moment.min.js",
"content-script.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "icon128.png"
}
},
"icons": {
"128": "icon128.png"
}
}