GIFUC - Google Inbox Favicon Unread Counter

GIFUC - Google Inbox Favicon Unread Counter

See how many unread messages are in your Inbox at the tab's icon.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GIFUC - Google Inbox Favicon Unread Counter",
  "version": "0.1.5",
  "manifest_version": 2,
  "description": "See how many unread messages are in your Inbox at the tab's icon.",
  "homepage_url": "http://kintal.org/gifuc",
  "author": "Pablo Dias <[email protected]>",
  "short_name": "GIFUC",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "https://mail.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://inbox.google.com/*"
      ],
      "js": [
        "src/inject/favico.min.js",
        "src/inject/inject.js"
      ]
    }
  ]
}