Hong Kong Weather Warnings

Hong Kong Weather Warnings

For peoples in Hong Kong SAR. It will display current weather information and warnings announced by the Hong Kong Observatory.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "52.0"
    }
  },
  "name": "Hong Kong Weather Warnings",
  "version": "0.7.1",
  "manifest_version": 2,
  "description": "This extension will visit The Hong Kong Observatory homepage and display current hoisted weather warnings of Hong Kong in Firefox",
  "homepage_url": "https://hkww.isaac.hk",
  "icons": {
    "24": "icons/hkww.svg",
    "48": "icons/hkww.svg",
    "96": "icons/hkww.svg"
  },
  "permissions": [
    "alarms",
    "storage",
    "notifications",
    "tabs",
    "*://*.hko.gov.hk/*",
    "*://*.weather.gov.hk/*"
  ],
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "browser_action": {
    "default_icon": "icons/hkww.svg",
    "default_title": "Load HKO website",
    "default_popup": "popup/popup.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "hkwwservice.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.hko.gov.hk/*",
        "*://*.weather.gov.hk/*"
      ],
      "match_about_blank": false,
      "run_at": "document_idle",
      "js": [
        "hkwwclient.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/*.svg",
    "icons/*.png"
  ]
}