Star Wars Weather

Star Wars Weather

Open a new tab page display a star wars background based on the weather!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Star Wars Weather",
  "version": "1.3.6.3",
  "description": "Open a new tab page display a star wars background based on the weather!",
  "icons": {
    "16": "/public/assets/icons/icon16.png",
    "32": "/public/assets/icons/icon32.png",
    "48": "/public/assets/icons/icon48.png",
    "64": "/public/assets/icons/icon64.png",
    "128": "/public/assets/icons/icon128.png"
  },
  "chrome_url_overrides": {
    "newtab": "./public/index.html"
  },
  "options_ui": {
    "page": "./public/options.html",
    "open_in_tab": false
  },
  "permissions": [
    "geolocation"
  ],
  "action": {
    "default_popup": "./public/popup.html"
  },
  "background": {
    "service_worker": "./src/background.js"
  }
}