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": "Air Quality Tracker",
"version": "1.0.0",
"description": "Track air quality with dynamic New Tab effects and detailed AQI, PM2.5, PM10 information",
"permissions": [
"storage",
"geolocation",
"alarms"
],
"host_permissions": [
"https:\/\/api.openweathermap.org\/*",
"https:\/\/api.waqi.info\/*",
"https:\/\/api.openaq.org\/*"
],
"action": {
"default_popup": "popup\/popup.html",
"default_title": "Air Quality Tracker"
},
"chrome_url_overrides": {
"newtab": "newtab\/newtab.html"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"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"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}