FLOW PAGE : text to speech (auto read  & scroll)

FLOW PAGE : text to speech (auto read & scroll)

FLOW PAGE is designed to make automatic text reading as smooth as possible. All you have to do is click on the text and listen to it, so you can browse the web while resting your tired eyes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "FLOW PAGE",
  "version": "1.1.4",
  "description": "Speech (Auto Read & Auto Scroll) ",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    },
    "gecko_android": {
      "strict_min_version": "113.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "images/*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "icons": {
    "48": "icons/FlowPage-Icon 48.png",
    "96": "icons/FlowPage-Icon 96.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/FlowPage-Icon small 16.png",
      "32": "icons/FlowPage-IconSmall.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "FlowPage.js",
        "qrcode.min.js"
      ],
      "css": [
        "flowpage.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}