Examine source code of App for Weather Forecast

Inspect and view changes in App for Weather Forecast source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "version": "0.1.1resigned1",
  "manifest_version": 2,
  "short_name": "appforweather",
  "name": "App for Weather Forecast",
  "background": {
    "page": "lib/chrome/background.html"
  },
  "homepage_url": "http://mybrowseraddon.com/app-for-weather.html",
  "web_accessible_resources": [
    "data/panel/panel.css",
    "data/icons/*.png"
  ],
  "browser_action": {
    "default_icon": "data/icons/32.png",
    "default_title": "App for Weather Forecast"
  },
  "description": "The easiest way to lookup current weather in your area, plus, get badge notifications",
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_start",
      "js": [
        "data/panel/panel.js"
      ],
      "matches": [
        "*://www.wunderground.com/*"
      ]
    }
  ],
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{fde9fd62-5b3a-4061-8a11-ca924158b1e1}"
    }
  }
}