Current Weather

Current Weather

This extension will give you the current weather in your area.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Current Weather",
  "version": "1.0",
  "description": "This extension will give you the current weather in your area.",
  "author": "Puranjay Prashanth",
  "permissions": [
    "geolocation",
    "http://api.openweathermap.org/data/2.5/weather"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Current Weather",
    "default_icon": {
      "16": "images/Icon16.png",
      "32": "images/Icon32.png",
      "48": "images/Icon48.png",
      "128": "images/Icon128.png"
    }
  },
  "icons": {
    "16": "images/Icon16.png",
    "32": "images/Icon32.png",
    "48": "images/Icon48.png",
    "128": "images/Icon128.png"
  },
  "manifest_version": 2
}