Speech Automatic

Speech Automatic

Instantly convert any webpage text to natural sounding speech

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Speech Automatic",
  "short_name": "Speech Automatic",
  "default_locale": "en",
  "description": "Instantly convert any webpage text to natural sounding speech",
  "version": "1.1.2",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "activeTab",
    "https://translate.google.com/",
    "https://speechautomatic.com/"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon.png"
  },
  "background": {
    "scripts": [
      "js/jquery-3.1.1.min.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  }
}