Weather Application

Weather Application

Latest Weather Updates

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Weather Application",
  "version": "0.0.22",
  "manifest_version": 2,
  "description": "Latest Weather Updates",
  "homepage_url": "http://www.jayantarora.com",
  "icons": {
    "16": "icons/sun16.png",
    "24": "icons/sun24.png",
    "32": "icons/sun32.png",
    "64": "icons/sun64.png",
    "128": "icons/sun128.png",
    "256": "icons/sun256.png",
    "512": "icons/sun512.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/bg/background.js",
      "src/bg/skycons.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/sun16.png",
    "default_title": "Weather Information"
  },
  "permissions": [
    "notifications",
    "tabs",
    "geolocation",
    "<all_urls>"
  ],
  "omnibox": {
    "keyword": "weather"
  },
  "content_security_policy": "script-src 'self' https://maps.googleapis.com/maps/api/js https://maps.googleapis.com/maps-api-v3/api/js/30/1/common.js https://maps.googleapis.com/maps-api-v3/api/js/30/1/util.js https://maps.googleapis.com/maps-api-v3/api/js/30/1/stats.js; object-src 'self'"
}