Online speech recognition

Online speech recognition

Speech to text on any web site and in Windows and Linux applications

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "19": "images/speechpad-19.png",
      "38": "images/speechpad-38.png"
    },
    "default_title": "Speechpad (Voice Notebook)",
    "default_popup": "options.html"
  },
  "commands": {
    "clipboard": {
      "description": "__MSG_hotkeyc__",
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "Command+Shift+X"
      }
    },
    "direct": {
      "description": "__MSG_hotkeyd__",
      "suggested_key": {
        "default": "Ctrl+Shift+Z",
        "mac": "Command+Shift+Z"
      }
    },
    "togrecord": {
      "description": "__MSG_hotkeye__",
      "global": true,
      "suggested_key": {
        "default": "Ctrl+Shift+7",
        "mac": "Command+Shift+7"
      }
    },
    "player": {
      "description": "__MSG_hotkeyu__",
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "mac": "Command+Shift+U"
      }
    }
  },
  "content_scripts": [
    {
      "js": [
        "myscript.js"
      ],
      "matches": [
        "http://speechpad.ru/*",
        "https://speechpad.ru/*",
        "http://voicenotebook.com/*",
        "https://voicenotebook.com/*"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "speechpad-16.png",
    "48": "speechpad-48.png",
    "128": "speechpad-128.png"
  },
  "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCR7NI/bSzIngNKI5ZcFBkSTdkAhW6kncFk2rEFAZBCTQs7hO8zoY17lZrt7qKSzc+lBqMFVN9YYwrkTxsU+bCSLACBcOEHH+hOKiOLrp5e100AeTfWRuzMtmv7aq5CgxIN4puHnmmVQ4JhigcoZXrQrCNSSNzppWbG8DzjnqVtTwIDAQAB",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "options_page": "options.html",
  "permissions": [
    "scripting",
    "storage",
    "tabs",
    "clipboardWrite",
    "offscreen",
    "contextMenus",
    "nativeMessaging",
    "activeTab"
  ],
  "version": "10.0"
}