Weather Forecast powered by AccuWeather

Weather Forecast powered by AccuWeather

Stay updated on current weather conditions for the location(s) of your choice.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Weather Forecast powered by AccuWeather",
  "version": "4.6.6",
  "manifest_version": 2,
  "description": "Stay updated on current weather conditions for the location(s) of your choice.",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "64": "64.png",
    "128": "128.png"
  },
  "chrome_url_overrides": {
    "newtab": "new-tab.html"
  },
  "omnibox": {
    "keyword": "weather"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Accuweather",
      "keyword": "accuweather",
      "search_url": "https://weather.srch0.com/?q={searchTerms}&a=gsb_mka_00_00",
      "image_url": "https://weather.srch0.com/?q={searchTerms}&a=gsb_mka_00_00",
      "suggest_url": "https://weather.srch0.com/suggest?q={searchTerms}&a=gsb_mka_00_00",
      "instant_url": "https://weather.srch0.com/suggest?q={searchTerms}&a=gsb_mka_00_00",
      "favicon_url": "https://weather.srch0.com/no-icon.ico",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "permissions": [
    "tabs",
    "storage",
    "alarms",
    "notifications",
    "history",
    "idle",
    "http://*.accuweather.com/*",
    "https://*.accuweather.com/*"
  ],
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "19.png",
      "38": "38.png"
    },
    "default_title": "",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "data.js"
      ],
      "matches": [
        "*://*.accuweather.com/mng-bg*"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "new-tab.html"
  ]
}