Voice Typing

Voice Typing

Use your voice to type on any website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "manifest_version": 3,
  "version": "7.0.2",
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab"
  ],
  "default_locale": "en",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "commands": {
    "toggle-voice-typing": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Toggle Voice Typing"
    }
  },
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "19": "images/icon-19.png",
      "38": "images/icon-38.png",
      "128": "images/icon-128.png"
    }
  },
  "icons": {
    "16": "images/icon-16.png",
    "19": "images/icon-19.png",
    "38": "images/icon-38.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "content_script.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://imagetext.xyz/*",
      "*://*.imagetext.xyz/*",
      "*://voicetyping.xyz/*",
      "*://*.voicetyping.xyz/*"
    ]
  }
}