Start Weather

Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API).
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_application_title__",
  "description": "__MSG_application_description__",
  "version": "0.64",
  "manifest_version": 2,
  "default_locale": "en",
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://*.yahooapis.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [],
      "js": [
        "/js/jquery/jquery-1.11.0.min.js",
        "js/in.js",
        "js/core.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "Start Weather"
  },
  "icons": {
    "16": "images/icon.png",
    "128": "images/icon_128.png"
  },
  "permissions": [
    "webNavigation",
    "tabs",
    "geolocation",
    "topSites"
  ],
  "web_accessible_resources": [
    "weather.htm",
    "/css/in.css",
    "images/*"
  ]
}