Slang - Text to Speech

Slang - Text to Speech

Convert the selected text to 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": "Slang - Text to Speech",
  "version": "0.4",
  "description": "Convert the selected text to speech.",
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "contextMenu.js",
      "speech.js"
    ],
    "persintent": false
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon128.png",
    "default_title": "Slang",
    "default_popup": "popup.html"
  }
}