Feedbin.me

Feedbin.me

Subscribe to RSS and Atom news feeds with Feedbin.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Feedbin.me",
  "description": "Subscribe to RSS and Atom news feeds with Feedbin.",
  "version": "1.1.1",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "sniff_common.js",
        "doc_start.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "sniff_common.js",
        "feed_finder.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "default_locale": "en",
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "manifest_version": 2,
  "page_action": {
    "default_icon": {
      "19": "icon/blue.png",
      "38": "icon/[email protected]"
    }
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage"
  ]
}