X-notifier Neo

X-notifier Neo

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "X-notifier Neo",
  "version": "3.2",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "action": {
    "default_title": "__MSG_app_name__",
    "default_icon": {
      "19": "icon_19_gray.png",
      "38": "icon_38_gray.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "incognito": "spanning",
  "permissions": [
    "background",
    "alarms",
    "tabs",
    "notifications",
    "storage",
    "cookies",
    "declarativeNetRequest",
    "offscreen"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "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": [
    {
      "resources": [
        "res/gmail/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}