Umbrella Check

Umbrella Check

This extension will remind you to bring umbrella

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Umbrella Check",
  "description": "This extension will remind you to bring umbrella",
  "version": "1.2",
  "browser_action": {
    "default_icon": "umbrella.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.google.com/*",
        "http://ipinfo.io/*",
        "https://query.yahooapis.com/*"
      ],
      "js": [
        "jquery.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "popup.js",
      "jquery.js"
    ]
  },
  "permissions": [
    "activeTab",
    "notifications",
    "geolocation"
  ]
}