FLOW PAGE

FLOW PAGE

Text reading (automatic reading & scrolling)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "1.1.7",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "content_security_policy": {
    "extension_pages": "default-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "FlowPage.js",
        "qrcode.min.js"
      ],
      "css": [
        "flowpage.css"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "icons": {
    "16": "icons/FlowPage-Icon small 16.png",
    "24": "icons/FlowPage-Icon small 24.png",
    "32": "icons/FlowPage-IconSmall.png",
    "48": "icons/FlowPage-Icon 48.png",
    "96": "icons/FlowPage-Icon 96.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "FPshareUS.html",
        "FPshareJA.html",
        "FPshareZh.html",
        "FPshareKo.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/FlowPage-Icon small 16.png",
      "24": "icons/FlowPage-Icon small 24.png",
      "32": "icons/FlowPage-IconSmall.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}