Inspect and view changes in WeatherNow+ 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",
"manifest_version": 3,
"name": "WeatherNow+",
"description": "WeatherNow+ is a weather extension for chrome that shows the weather of the city you want to see.",
"version": "0.0.1",
"short_name": "WeatherNow+",
"icons": {
"16": "icon/16.png",
"32": "icon/32.png",
"48": "icon/48.png",
"96": "icon/96.png",
"128": "icon/128.png"
},
"permissions": [
"contextMenus",
"storage",
"notifications"
],
"author": "Halil İbrahim Celik",
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Default Popup Title",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"content-scripts/content.css"
],
"js": [
"content-scripts/content.js"
]
}
]
}