ReadX Text To Speech

ReadX Text To Speech

Text to speech Extension, works on Android

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "ReadX Text To Speech",
  "version": "1.0.3",
  "browser_action": {
    "default_icon": "images/get_started32.png"
  },
  "description": "Text to speech Extension!",
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation",
    "tabs"
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "commands": {
    "toggle-feature": {
      "suggested_key": {
        "default": "Ctrl+Shift+O"
      },
      "description": "Send a 'toggle-feature' event"
    }
  },
  "manifest_version": 2
}