RSS Feed Reader

RSS Feed Reader

Get a simple overview of your RSS and Atom feeds in the toolbar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RSS Feed Reader",
  "short_name": "feeder",
  "version": "7.9.0",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "Get a simple overview of your RSS and Atom feeds in the toolbar",
  "icons": {
    "19": "extension-icons/icon-retina.png",
    "48": "extension-icons/icon48x48.png",
    "128": "extension-icons/icon128x128.png"
  },
  "browser_action": {
    "default_icon": "extension-icons/icon-retina.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "content/page_plugin.js"
      ]
    },
    {
      "matches": [
        "http://feeder.co/*",
        "http://*.feeder.co/*",
        "https://feeder.co/*",
        "https://*.feeder.co/*"
      ],
      "run_at": "document_end",
      "js": [
        "feeder_api.js"
      ]
    }
  ],
  "background": {
    "page": "main.html"
  },
  "background_page": "main.html",
  "web_accessible_resources": [
    "extension-icons/icon48x48.png",
    "extension-icons/bar-buttons-good_2x.png",
    "extension-icons/icon-retina.png",
    "extension-icons/[email protected]"
  ],
  "options_page": "settings_redirect.html",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://www.google-analytics.com; object-src 'self'",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+R",
        "linux": "Ctrl+Shift+R",
        "windows": "Ctrl+Shift+R",
        "mac": "Alt+Shift+R"
      }
    }
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "chrome://favicon/",
    "storage",
    "notifications",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "unlimitedStorage",
    "contextMenus"
  ]
}