Feedly Open All Unread

Feedly Open All Unread

Adds a button to feedly.com to open all unread articles in new tabs

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 Open All Unread",
  "version": "1.3",
  "description": "Adds a button to feedly.com to open all unread articles in new tabs",
  "homepage_url": "https://github.com/cypressious/ff-feedly-open-unread",
  "content_scripts": [
    {
      "matches": [
        "*://feedly.com/*"
      ],
      "js": [
        "browser-polyfill.min.js",
        "content-script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage"
  ]
}