Inspect and view changes in Weather Today Extension 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
{
"manifest_version": 2,
"name": "Weather Today Extension",
"description": "Check weather report and forecast in your browser new tab. Play around with weather specific custom background in your new tab.",
"homepage_url": "https://www.weathertodayextension.com/",
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"permissions": [
"geolocation",
"storage",
"https://www.bensendigital.com/weathertoday/*",
"https://*.bing.com/*",
"*://*.google.com/*"
],
"version": "1.1",
"browser_action": {
"default_icon": {
"16": "images/bd-16.png",
"32": "images/bd-32.png",
"48": "images/bd-48.png",
"128": "images/bd-128.png"
}
},
"icons": {
"16": "images/bd-16.png",
"32": "images/bd-32.png",
"48": "images/bd-48.png",
"128": "images/bd-128.png"
},
"chrome_url_overrides": {
"newtab": "landing.html"
},
"web_accessible_resources": [
"images/*.*"
]
}