Easy Reader

Easy Reader

Avoid any eye strain from reading bright pages with this free reader extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Easy Reader",
  "description": "Avoid any eye strain from reading bright pages with this free reader extension",
  "version": "1.0.0.1",
  "manifest_version": 3,
  "action": {
    "default_icon": "icons/icon-256.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "autotoggle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "ftp://*/*",
    "file://*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}