H2R Speak

H2R Speak

This plugin from Hear2Read reads 8 different Indic language text by speaking using Text to Speech Engine accessed over Internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "This plugin from Hear2Read reads 8 different Indic language text by speaking using Text to Speech Engine accessed over Internet.",
  "manifest_version": 3,
  "name": "H2R Speak",
  "version": "1.2.1.0",
  "icons": {
    "16": "icons/H2RSpeak-16.png",
    "32": "icons/H2RSpeak-32.png",
    "48": "icons/H2RSpeak-48.png",
    "64": "icons/H2RSpeak-64.png",
    "96": "icons/H2RSpeak-96.png",
    "128": "icons/H2RSpeak-128.png",
    "256": "/icons/H2RSpeak-256.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://hear2read.org/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/back-48.png",
        "images/forward-48.png",
        "images/pause-48.png",
        "images/play-48.png",
        "images/stop-48.png",
        "images/H2R_speaker_on.svg",
        "images/H2R_speaker_off.svg"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_scripts/H2R_player.js"
      ],
      "css": [
        "content_scripts/H2R_Player.css"
      ]
    }
  ]
}