Multi-Inbox Checker

Multi-Inbox Checker

Chrome extension displays the number of unread emails in inbox. Can automatically toggle between multiple accounts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Multi-Inbox Checker",
  "description": "Chrome extension displays the number of unread emails in inbox. Can automatically toggle between multiple accounts.",
  "version": "0.1.0",
  "manifest_version": 2,
  "permissions": [
    "*://*.google.com/",
    "alarms",
    "tabs",
    "webNavigation"
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "options_page": "options.html",
  "browser_action": {
    "default_title": "Gmail Checker",
    "default_icon": "not_ready.png"
  },
  "icons": {
    "128": "icon_128.png"
  }
}