VoiceRead

VoiceRead

This extension makes reading on Chrome easy and audible

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "VoiceRead",
  "description": "This extension makes reading on Chrome easy and audible",
  "version": "1.0",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/highlight.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "tts",
    "fontSettings"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}