DownMessage

DownMessage

Is the website down right now? Get real-time alerts of your favorite websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "DownMessage",
  "description": "Is the website down right now? Get real-time alerts of your favorite websites.",
  "version": "1.1.6",
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "./images/no-data-16px.png",
      "19": "./images/no-data-19px.png",
      "32": "./images/no-data-32px.png",
      "38": "./images/no-data-38px.png"
    }
  },
  "icons": {
    "16": "./images/down-logo-16.png",
    "48": "./images/down-logo-48.png",
    "128": "./images/down-logo-128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "*://*.downmessage.com/*",
    "webRequest",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./dist/js/jquery.js",
        "./dist/js/content-script.js"
      ],
      "css": [
        "./dist/css/content-script.css"
      ]
    }
  ]
}