List Feeds

List Feeds

Detects and lists feeds (rss,atom,json) of a page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "igorlogius",
  "icons": {
    "256": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "homepage_url": "https://github.com/igorlogius",
  "description": "Detects and lists feeds (rss,atom,json) of a page",
  "manifest_version": 2,
  "name": "List Feeds",
  "browser_action": {
    "default_area": "navbar",
    "default_popup": "popup.html"
  },
  "permissions": [
    "menus",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "version": "1.0.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "{55ea06a2-6461-4859-b0ff-cf311402f150}"
    }
  }
}