Voice Command

Voice Command

Voice Command turns your web browser into a voice-based assistant.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Voice Command",
  "author": "Scott Zuccarino",
  "version": "0.0.0.5",
  "description": "Voice Command turns your web browser into a voice-based assistant.",
  "incognito": "split",
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "icons": {
    "128": "128.png"
  },
  "commands": {
    "start-listening-shortcut": {
      "suggested_key": {
        "default": "Ctrl+Shift+0"
      },
      "description": "Start Listening",
      "global": true
    }
  },
  "background": {
    "scripts": [
      "js/Background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://apis.google.com https://www.google-analytics.com; object-src 'self'",
  "permissions": []
}