Modal Reader

Modal Reader

Double-click text on a webpage to open it inside a modal reader optimized for readability.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Modal Reader",
  "version": "0.3",
  "manifest_version": 3,
  "description": "Double-click text on a webpage to open it inside a modal reader optimized for readability.",
  "icons": {
    "128": "icons/logo128x128.png"
  },
  "action": {
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "public/stylesheets/reader.css",
        "public/stylesheets/reader_dark.css",
        "public/fonts/*.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}