Newsblur favicon count

Newsblur favicon count

Add the number of unread stores to the Newsblur favicon.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Newsblur favicon count",
  "version": "3.0.0",
  "description": "Add the number of unread stores to the Newsblur favicon.",
  "icons": {
    "48": "icons/48x48.png",
    "96": "icons/96x96.png",
    "128": "icons/128x128.png",
    "256": "icons/256x256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.newsblur.com/*"
      ],
      "js": [
        "dist/main.js"
      ]
    }
  ],
  "permissions": [
    "https://newsblur.com"
  ]
}