Reader Self Feeder

Reader Self Feeder

Detect feeds in current page and get direct links to subscribe in Reader Self

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reader Self Feeder",
  "version": "1.2.2",
  "default_locale": "en",
  "description": "__MSG_description__",
  "manifest_version": 2,
  "icons": {
    "16": "/medias/readerself_16x16.png",
    "48": "/medias/readerself_48x48.png",
    "128": "/medias/readerself_128x128.png"
  },
  "homepage_url": "http://readerself.com",
  "options_page": "/application/views/options.html",
  "background": {
    "page": "/application/views/background.html"
  },
  "content_scripts": [
    {
      "js": [
        "/scripts/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "page_action": {
    "default_icon": "/medias/readerself_16x16.png",
    "default_title": "Reader Self Feeder",
    "default_popup": "/application/views/popup.html"
  },
  "permissions": [
    "notifications",
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}