Inspect and view changes in Daily Stream App V3 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Daily Stream App V3",
"author": "Daily Stream",
"description": "Daily Stream App for system monitoring and alerts",
"version": "3.0.0",
"manifest_version": 3,
"minimum_chrome_version": "102",
"action": {
"default_icon": {
"16": "logo16.png",
"48": "logo48.png",
"128": "logo128.png"
},
"default_popup": "index.html",
"default_title": "Daily Stream App"
},
"permissions": [
"activeTab",
"storage",
"notifications",
"tabs",
"gcm",
"scripting"
],
"externally_connectable": {
"matches": [
"https://*.dailystream.com/*"
]
},
"host_permissions": [
"https://*.dailystream.com/*",
"https://*/*"
],
"background": {
"service_worker": "./static/js/background.js"
}
}