Provides alerts about traffic conditions on user's regular routes
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "RouteGuard - Real-time Traffic Update System",
"version": "1.0",
"description": "Provides alerts about traffic conditions on user's regular routes",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"action": {
"default_icon": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"default_title": "RouteGuard",
"default_popup": "popup/popup.html"
},
"permissions": [
"storage",
"alarms",
"notifications"
],
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"browser_specific_settings": {
"gecko": {
"id": "routeguard@example.com"
}
}
}