mPage

mPage

Simple dashboard-like RSS feed reader.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_specific_settings": {
    "gecko": {
      "id": "{b9ca4756-a187-4a50-b350-7c860e9a863d}",
      "strict_min_version": "80.0"
    }
  },
  "manifest_version": 2,
  "default_locale": "en_US",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.35",
  "author": "Matija Podravec",
  "homepage_url": "https://github.com/mpod/mpage",
  "permissions": [
    "<all_urls>",
    "storage",
    "downloads",
    "history",
    "tabs"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "32": "icons/icon.png"
    }
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/extract-feeds.js"
      ]
    }
  ]
}