TheWeatherOutlook (TWO)

TheWeatherOutlook (TWO)

This extension provides quick access to the latest weather forecasts and news from TheWeatherOutlook (TWO).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TheWeatherOutlook (TWO)",
  "description": "This extension provides quick access to the latest weather forecasts and news from TheWeatherOutlook (TWO).",
  "version": "1.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://www.theweatheroutlook.com/"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://www.theweatheroutlook.com/*",
        "https://www.theweatheroutlook.com/*"
      ],
      "js": [
        "jquery-1.9.1.min.js"
      ]
    }
  ]
}