Toolbar Weather

Toolbar Weather

This extension shows in your toolbar the current weather and the degree in Celsius, when you click is possible to see more details about the weather in your city. In addition to being able to view the forecast for the next 24 and 48 hours.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "2.3",
  "homepage_url": "https://github.com/jhonatasrm/toolbar-weather",
  "default_locale": "en",
  "author": "Jhonatas Machado",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "63.0"
    }
  },
  "icons": {
    "40": "res/icons/icon.png",
    "80": "res/icons/[email protected]"
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "__MSG_extensionName__",
    "default_popup": "../html/popup.html"
  },
  "background": {
    "page": "/html/popup.html"
  },
  "options_ui": {
    "browser_style": false,
    "open_in_tab": true,
    "page": "html/preferences.html"
  },
  "permissions": [
    "tabs",
    "geolocation",
    "storage",
    "contextMenus",
    "menus"
  ]
}