Rain Alarm Extension

Rain Alarm Extension

This weather extension warns you when rain is currently nearing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "version": "1.6.4",
  "icons": {
    "128": "launcher.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_title": "__MSG_extName__"
  },
  "background": {
    "service_worker": "js/background3.js"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.rain-alarm.com/?from=chrome2*"
      ],
      "js": [
        "js/inject.js"
      ]
    }
  ],
  "permissions": [
    "alarms",
    "geolocation",
    "notifications",
    "background",
    "storage",
    "offscreen"
  ],
  "host_permissions": [
    "https://app.rain-alarm.com/*",
    "https://www.rain-alarm.com/*"
  ]
}