RSS Feed

RSS Feed

A full featured RSS reader that's fully contained within the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "3.0.1",
  "action": {
    "default_icon": "transmit.png",
    "default_title": "RSS Feed"
  },
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "api.js",
        "sha256.js",
        "medium.js",
        "wit.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "transmit.png",
    "128": "icon_128.png"
  },
  "background": {
    "service_worker": "background-worker.js"
  },
  "name": "RSS Feed",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "tabs",
    "declarativeNetRequest",
    "alarms"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}