X-notifier Neo

X-notifier Neo

Notifier for Gmail, Hotmail, Yahoo, AOL and so on

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "X-notifier Neo",
  "version": "2.4",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "browser_action": {
    "default_title": "__MSG_app_name__",
    "default_icon": {
      "19": "icon_19_gray.png",
      "38": "icon_38_gray.png"
    },
    "default_popup": "popup.html",
    "browser_style": true
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "background": {
    "page": "background.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "alarms",
    "tabs",
    "notifications",
    "storage",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*",
    "https://mail.google.com/*",
    "https://mail.yahoo.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://xnotifier.tobwithu.com/xn/"
      ],
      "css": [
        "content/style.css"
      ],
      "js": [
        "exlib/common.js",
        "js/ui.js",
        "content/script.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.icloud.com/"
      ],
      "js": [
        "content/icloud.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "res/gmail/*.png"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{c98e042b-917d-4bdb-b125-dd3ace21ab71}"
    }
  }
}