MineWeather

MineWeather

Make your new tab page display a crafty scene based on the weather!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "MineWeather",
  "description": "Make your new tab page display a crafty scene based on the weather!",
  "version": "0.5.0",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "geolocation",
    "storage",
    "alarms"
  ],
  "chrome_url_overrides": {
    "newtab": "/newtab.html"
  },
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_popup": "/popup.html",
    "default_icon": {
      "16": "/icons/icon16.png",
      "24": "/icons/icon24.png",
      "32": "/icons/icon32.png",
      "48": "/icons/icon48.png",
      "128": "/icons/icon128.png"
    }
  },
  "icons": {
    "16": "/icons/icon16.png",
    "24": "/icons/icon24.png",
    "32": "/icons/icon32.png",
    "48": "/icons/icon48.png",
    "128": "/icons/icon128.png"
  },
  "host_permissions": [
    "https://api.open-meteo.com/"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}