Feed Shaper

Feed Shaper

Feed Shaper is a feed reader that supports RSS and Atom formats. Optimized for headlines, it suits for previewing the latest information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Feed Shaper",
  "version": "30.0",
  "author": "JM",
  "description": "Feed Shaper is a feed reader that supports RSS and Atom formats. Optimized for headlines, it suits for previewing the latest information.",
  "icons": {
    "48": "feed48.svg",
    "96": "feed48.svg"
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "115.0",
      "id": "{b24b0760-b283-4888-8f1f-31bda3abe82c}"
    },
    "gecko_android": {
      "strict_min_version": "115.0"
    }
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ],
    "type": "module"
  },
  "browser_action": {
    "default_icon": "feed48.svg",
    "default_popup": "html/bookmarks.html"
  },
  "content_scripts": [
    {
      "js": [
        "content_scripts/resident.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "open_in_tab": true,
    "page": "html/options.html"
  },
  "permissions": [
    "menus",
    "scripting",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "html/viewer.html"
  ]
}