Feedly Add

Feedly Add

Quickly add Feeds to Feedly without leaving current tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Feedly Add",
  "short_name": "Add feed to Feedly",
  "background": {
    "persistent": false,
    "scripts": [
      "js/feedly.api.js",
      "js/background.js"
    ]
  },
  "page_action": {
    "default_icon": "icon-128.png",
    "default_title": "Add Feed to Feedly",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/sniff_common.js",
        "js/feed_finder.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "Quickly add Feeds to Feedly without leaving current tab",
  "homepage_url": "http://www.peeomid.com/",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "options_page": "options/options.html",
  "web_accessible_resources": [
    "icon-48.png"
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "notifications",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1"
}