Pericles: Text to Speech Screen Reader

Pericles: Text to Speech Screen Reader

Web-page TTS (text to speech) screen reader, that does not require cutting and pasting sentences, paragraphs or entire page sections.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Pericles: Text to Speech Screen Reader",
  "version": "2.0.32",
  "description": "Web-page TTS (text to speech) screen reader, that does not require cutting and pasting sentences or entire page sections",
  "homepage_url": "https://getpericles.com",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-vendors.js",
        "content-bundle.js"
      ],
      "css": []
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "background-vendors.js",
      "background-bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icon/16-on.png",
      "32": "icon/32-on.png",
      "96": "icon/96-on.png",
      "128": "icon/128-on.png"
    },
    "default_popup": "popup.html",
    "default_title": "Pericles: Text to speech Screen Reader"
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "tts",
    "tabs"
  ],
  "icons": {
    "16": "icon/16-on.png",
    "32": "icon/32-on.png",
    "96": "icon/96-on.png",
    "128": "icon/128-on.png"
  },
  "web_accessible_resources": [
    "static/content.css"
  ],
  "manifest_version": 2
}