Oweb Voice Input

Oweb Voice Input

Input texts to website's text boxes by speaking.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Oweb Voice Input",
  "description": "Input texts to website's text boxes by speaking.",
  "version": "1.0",
  "icons": {
    "16": "images/logo/32-32/Oweb Voice Input.png",
    "128": "images/logo/256-256/Oweb Voice Input.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "page": "background.html"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "options_page": "options.html"
}