VoiceFiller Speech To Text for Website Forms

VoiceFiller Speech To Text for Website Forms

VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "VoiceFiller Speech To Text for Website Forms",
  "short_name": "VoiceFiller",
  "description": "VoiceFiller - Fill the website forms and inputs with your voice, via latest Speech To Text technology, for Free",
  "version": "0.0.0.13",
  "icons": {
    "16": "icons/favicon16.png",
    "48": "icons/favicon48.png",
    "128": "icons/favicon128.png"
  },
  "browser_action": {
    "default_icon": "icons/favicon128.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/contentScript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js",
      "js/chrome-extension-async.js"
    ],
    "persistent": false,
    "run_at": "document_idle"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Alt+R",
        "mac": "Alt+R"
      },
      "description": "Start speech to text"
    }
  }
}