Feedly Full Feed

Feedly Full Feed

show full story of the current entry in feedly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Feedly Full Feed",
  "description": "show full story of the current entry in feedly.",
  "manifest_version": 2,
  "version": "0.0.1",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "page": "background.html"
  },
  "page_action": {
    "default_icon": "btn.png",
    "default_title": "Fetch SITEINFO"
  },
  "content_scripts": [
    {
      "js": [
        "fullfeed.js"
      ],
      "css": [
        "fullfeed.css"
      ],
      "matches": [
        "http://cloud.feedly.com/*",
        "https://cloud.feedly.com/*"
      ]
    }
  ]
}