iRead4u

iRead4u

Reads (text to speech) the currently highlighted text on the screen (current tab)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "iRead4u",
  "short_name": "iRead4u",
  "description": "Reads (text to speech) the currently highlighted text on the screen (current tab)",
  "version": "1.5.0",
  "manifest_version": 2,
  "author": "Deep Aggarwal <[email protected]>",
  "commands": {
    "read-highlighted": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "Reads highlighted text on the screen (current tab)"
    }
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Read Highlighted Text"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png",
    "256": "icons/icon256.png"
  }
}