Page to Speech

Page to Speech

This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Page to Speech",
  "description": "This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon",
  "author": "Ivan Dimov",
  "version": "2.0.1",
  "background": {
    "scripts": [
      "background.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "polyfill.min.js",
        "ext.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "speech.png"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "clipboardRead"
  ]
}