Talk to Type

Talk to Type

Type to Talk can help you type with your voice. Forget typing forever.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Talk to Type",
  "version": "0.0.0.1",
  "description": "Type to Talk can help you type with your voice. Forget typing forever.",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "./icon/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "*://*.google.com/"
  ],
  "icons": {
    "16": "/icon/icon16.png",
    "48": "/icon/icon48.png",
    "128": "/icon/icon128.png"
  }
}