RSS Feed Reader

RSS Feed Reader

Feedo - The best RSS Feed Reader extension for Chrome. A simple and best method for staying informed of your most recent RSS feeds

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RSS Feed Reader",
  "description": "Feedo - The best RSS Feed Reader extension for Chrome. A simple and best method for staying informed of your most recent RSS feeds",
  "version": "1.0",
  "background": {
    "scripts": [
      "job.js",
      "includes/json2.js"
    ]
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "context_scr.js"
      ],
      "css": [
        "job.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "activeTab",
    "https://ajax.googleapis.com/",
    "tabs",
    "contextMenus"
  ]
}