Save to Feedly Board

Save to Feedly Board

Quickly save an article you are reading in your browser in one of your Feedly boards

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Save to Feedly Board",
  "description": "Quickly save an article you are reading in your browser in one of your Feedly boards",
  "author": "Feedly",
  "version": "4.0.1",
  "manifest_version": 2,
  "icons": {
    "16": "16x16.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "background": {
    "scripts": [
      "background-bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "19x19.png",
      "38": "[email protected]"
    },
    "default_title": "Save to Feedly Board",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "cookies",
    "*://feedly.com/",
    "https://graph.facebook.com/*"
  ],
  "web_accessible_resources": [
    "128x128.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://feedly.com/*"
      ],
      "js": [
        "inject-bundle.js"
      ]
    }
  ]
}