Read Out Loud

Read Out Loud

This extension adds a play button beside selected text on webpages, allowing users to listen to the text as speech.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Read Out Loud",
  "version": "1.0.0",
  "description": "This extension adds a play button beside selected text on webpages, allowing users to listen to the text as speech.",
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}