WeatherPlus

WeatherPlus

WeatherPlus is an easy-to-use weather app that displays the accurate 5 day weather forecast as well as the current time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WeatherPlus",
  "version": "0.1.7",
  "options_page": "app/index.html#settings",
  "icons": {
    "16": "images/icon16.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_icon": "images/icon16.png"
  },
  "description": "WeatherPlus is an easy-to-use weather app that displays the accurate 5 day weather forecast as well as the current time.",
  "author": "Guppy Games Inc, 1730 Minor Ave, Suite 1050, Seattle, WA, USA",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.weatherplusnow.com/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "https://geolocation-db.com/*",
    "https://maps.googleapis.com/*"
  ],
  "manifest_version": 3
}