Gmail™ Notifier (Developer Edition)

Gmail™ Notifier (Developer Edition)

Multiple label and account notifier for Google Mail (Gmail), and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "2.1.0",
  "name": "Gmailâ„¢ Notifier (Developer Edition)",
  "description": "__MSG_description__",
  "default_locale": "en",
  "homepage_url": "https://add0n.com/gmail-notifier.html",
  "permissions": [
    "notifications",
    "storage",
    "alarms",
    "identity",
    "idle",
    "https://mail.google.com/",
    "https://accounts.google.com/",
    "contextMenus"
  ],
  "optional_permissions": [
    "nativeMessaging",
    "downloads"
  ],
  "icons": {
    "16": "data/icons/colors/red/16.png",
    "32": "data/icons/colors/red/32.png",
    "48": "data/icons/colors/red/48.png",
    "64": "data/icons/colors/red/64.png",
    "128": "data/icons/colors/red/128.png",
    "256": "data/icons/colors/red/256.png",
    "512": "data/icons/colors/red/512.png"
  },
  "browser_action": {},
  "background": {
    "persistent": false,
    "scripts": [
      "core.js",
      "accounts.js",
      "configs.js",
      "sax.js",
      "engines/rss/core.js",
      "engines/api/core.js",
      "engines/native/core.js",
      "background.js",
      "badge.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/mail/u/*"
      ],
      "js": [
        "data/inject/watch.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "data/options/index.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}