Reader Mode Pro

Reader Mode Pro

A feature-packed distraction-free web reader with dyslexia support and research tools

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Reader Mode Pro",
  "short_name": "Reader Mode Pro",
  "version": "1.2.7",
  "description": "A feature-packed distraction-free web reader with dyslexia support and research tools",
  "homepage_url": "https://readermode.io",
  "icons": {
    "16": "assets/images/icon16.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "contextMenus",
    "storage",
    "scripting"
  ],
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts; 'unsafe-inline' 'self'"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "action": {
    "default_title": "Reader Mode Pro",
    "default_icon": "assets/images/icon.png"
  },
  "background": {
    "service_worker": "javascripts/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "assets/*",
        "javascripts/*",
        "styles/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "chromeos": "Ctrl+Shift+Z",
        "linux": "Ctrl+Shift+Z",
        "mac": "Ctrl+Shift+Z",
        "windows": "Ctrl+Shift+Z"
      }
    }
  }
}