Live Weather Report

Live Weather Report

User can check weather of many cites quickly and easily.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Live Weather Report",
  "description": "User can check weather of many cites quickly and easily.",
  "version": "1.0.0.1",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "content.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "logo/16.png",
      "32": "logo/32.png"
    },
    "default_title": "Live Weather Report",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "logo/16.png",
    "32": "logo/32.png",
    "48": "logo/48.png",
    "96": "logo/48.png",
    "128": "logo/128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://api.openweathermap.org/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "expert.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}