RSS Reader Extension (by Inoreader)

RSS Reader Extension (by Inoreader)

One place to keep up with all your RSS feeds, blogs, podcasts and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Innologica",
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "content_scripts": [
    {
      "exclude_matches": [
        "*://blog.inoreader.com/*",
        "*://translate.inoreader.com/*",
        "*://status.inoreader.com/*",
        "*://test.inoreader.com/*",
        "*://support.inoreader.com/*"
      ],
      "js": [
        "page.js"
      ],
      "matches": [
        "*://*.inoreader.com/*"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "description": "One place to keep up with all your RSS feeds, blogs, podcasts and more.",
  "icons": {
    "16": "icons/16_x_16_pixels.png",
    "48": "icons/48_x_48_pixels.png",
    "128": "icons/128_x_128_pixels.png"
  },
  "manifest_version": 2,
  "name": "RSS Reader Extension (by Inoreader)",
  "short_name": "Inoreader",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "storage",
    "*://*.inoreader.com/*"
  ],
  "optional_permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "version": "5.1.1",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}