Feedly Counter

Feedly Counter

Shows unread article count from Feedly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Feedly Counter",
  "description": "Shows unread article count from Feedly",
  "version": "1.3.3",
  "options_page": "options.html",
  "icons": {
    "48": "/icons/icon48.png",
    "128": "/icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "alarms",
    "notifications",
    "*://*.feedly.com/*"
  ],
  "browser_action": {
    "default_icon": "/icons/icon_disabled.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  }
}