Get current weather, including the daily and hourly forecasts for any desired location, plus badge text notification.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"version": "0.1.2",
"manifest_version": 2,
"name": "Weather Forecast",
"short_name": "weather-forecast",
"permissions": [
"idle",
"alarms",
"storage",
"contextMenus"
],
"homepage_url": "https://mybrowseraddon.com/weather-forecast.html",
"description": "Get current weather, including the daily and hourly forecasts for any desired location, plus badge text notification.",
"background": {
"persistent": false,
"scripts": [
"lib/config.js",
"lib/chrome.js",
"lib/runtime.js",
"lib/common.js"
]
},
"browser_action": {
"default_title": "Weather Forecast",
"default_icon": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png"
}
},
"icons": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png",
"128": "data/icons/128.png"
}
}