Weather

Weather

Extension shows the temperature and weather conditions for your current location

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_ext_name__",
  "version": "2.0.0",
  "manifest_version": 3,
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "action": {
    "default_icon": {
      "19": "images/icon-48.png",
      "38": "images/icon-48.png"
    },
    "default_title": "__MSG_popup_description__",
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "alarms",
    "storage"
  ],
  "host_permissions": [
    "https://*.skyweather.org/*"
  ]
}