Feed2Mail

Feed2Mail

Get updates from your favorite websites with Feed2Mail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "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",
  "description": "Get updates from your favorite websites with Feed2Mail.",
  "icons": {
    "128": "128.png"
  },
  "manifest_version": 2,
  "name": "Feed2Mail",
  "page_action": {
    "default_icon": "feed-icon-16x16.png",
    "default_popup": "popup.html",
    "default_title": "Follow this website with Feed2Mail"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "version": "2.3.6",
  "web_accessible_resources": [
    "iframe.js",
    "style.css"
  ]
}