V2T: Voice To Text

V2T: Voice To Text

Use speech recognition to convert your voice to text on any tab without typing

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_appDesc__",
  "default_locale": "en",
  "version": "1.9",
  "manifest_version": 3,
  "icons": {
    "48": "img/icon.png",
    "128": "img/[email protected]"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/vt.png",
      "32": "img/[email protected]",
      "48": "img/[email protected]",
      "128": "img/[email protected]"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*.svg"
      ],
      "use_dynamic_url": true
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "background": {
    "service_worker": "./background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+Y",
        "linux": "Ctrl+Shift+Y"
      },
      "description": "Opens Voice to Text"
    }
  }
}