WUTemp extension

WUTemp extension

View the active temperature of a Weather Underground Station

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WUTemp extension",
  "version": "1.1",
  "manifest_version": 2,
  "description": "View the active temperature of a Weather Underground Station",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "images/icon.png"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "jquery-2.1.3.min.js",
      "background.js"
    ]
  },
  "permissions": [
    "http://api.wunderground.com/",
    "storage"
  ]
}