Read Aloud: A Text to Speech Voice Reader

Read Aloud: A Text to Speech Voice Reader

Read out loud the current web-page article with one click. Supports 40+ languages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_short_name__",
  "description": "__MSG_extension_description__",
  "version": "1.69.0",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{ddc62400-f22d-4dd3-8b4a-05837de53c2e}"
    },
    "gecko_android": {}
  },
  "browser_action": {
    "default_area": "navbar",
    "default_icon": "img/icon.png",
    "default_popup": "popup.html?isPopup=1"
  },
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon.png"
  },
  "permissions": [
    "activeTab",
    "menus",
    "identity",
    "storage",
    "https://translate.google.com/"
  ],
  "optional_permissions": [
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "http://*/",
    "https://*/",
    "file://*/*"
  ],
  "web_accessible_resources": [
    "js/page/*",
    "img/*",
    "css/*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://piper.ttstool.com/"
      ],
      "js": [
        "js/messaging.js",
        "js/piper.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/rxjs.umd.min.js",
      "js/peerjs-1.4.7.min.js",
      "js/defaults.js",
      "js/messaging.js",
      "js/google-translate.js",
      "js/tts-engines.js",
      "js/speech.js",
      "js/document.js",
      "js/events.js"
    ],
    "persistent": true
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  },
  "commands": {
    "play": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "play/pause"
    },
    "stop": {
      "suggested_key": {
        "default": "Alt+O"
      },
      "description": "stop"
    },
    "forward": {
      "suggested_key": {
        "default": "Alt+Period"
      },
      "description": "forward"
    },
    "rewind": {
      "suggested_key": {
        "default": "Alt+Comma"
      },
      "description": "rewind"
    }
  }
}