Gmail Checker - Read, Label & Manage

Gmail Checker - Read, Label & Manage

Multiple label and account notifier for Google Mail (Gmail)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Gmail Checker - Read, Label & Manage",
  "short_name": "ignotifier",
  "description": "__MSG_description__",
  "version": "1.5.2",
  "default_locale": "en",
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "webRequestBlocking",
    "<all_urls>",
    "tabs",
    "notifications",
    "webRequest"
  ],
  "web_accessible_resources": [
    "notification.png"
  ],
  "browser_action": {
    "default_icon": {
      "16": "data/icons/blue/16.png",
      "18": "data/icons/blue/18.png",
      "19": "data/icons/blue/19.png",
      "32": "data/icons/blue/32.png"
    }
  },
  "background": {
    "page": "lib/wrapper/chrome/background.html"
  },
  "content_scripts": [
    {
      "js": [
        "lib/utils/library.js",
        "lib/utils/context.js",
        "lib/utils/tokens.js",
        "lib/utils/mail.js",
        "lib/fetcher.js"
      ],
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "icons": {
    "16": "data/icons/red/16.png",
    "18": "data/icons/red/18.png",
    "19": "data/icons/red/19.png",
    "32": "data/icons/red/32.png",
    "48": "data/icons/red/48.png",
    "64": "data/icons/red/64.png",
    "128": "data/icons/red/128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}