Weather Chrome Extension

Weather Chrome Extension

Simple and efficient extension to get all your weather information!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Weather Extension",
  "name": "Weather Chrome Extension",
  "description": "Simple and efficient extension to get all your weather information!",
  "permissions": [
    "geolocation",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Weather Extension",
    "default_icon": {
      "16": "weather16.png",
      "48": "weather48.png",
      "128": "weather128.png"
    }
  },
  "icons": {
    "16": "weather16.png",
    "48": "weather48.png",
    "128": "weather128.png"
  },
  "version": "1.1",
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  }
}