Voice In - Speech-To-Text Dictation

Voice In - Speech-To-Text Dictation

Use dictation to type in 10k+ sites in 50+ languages. VoiceIn transcribes your speech to text in real time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "images/ic_mic_gray_36dp.png",
    "name": "Click to start / stop recording"
  },
  "content_scripts": [
    {
      "js": [
        "js/cs/cs_top.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true
    },
    {
      "js": [
        "js/cs/cs_all.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+L"
      }
    },
    "lang1_ks": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Language 1 Shortcut"
    },
    "lang2_ks": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "Language 2 Shortcut"
    },
    "lang3_ks": {
      "suggested_key": {
        "default": "Ctrl+Shift+3"
      },
      "description": "Language 3 Shortcut"
    }
  },
  "default_locale": "en",
  "description": "__MSG_desc__",
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png",
    "144": "images/icon144.png"
  },
  "externally_connectable": {
    "matches": [
      "https://*.dictanote.co/*",
      "https://dictanote.co/*",
      "http://localhost:8000/*"
    ]
  },
  "homepage_url": "https://dictanote.co/voicein/",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "options_page": "settings.html",
  "permissions": [
    "tabs",
    "<all_urls>",
    "contextMenus",
    "background",
    "storage",
    "clipboardRead",
    "clipboardWrite",
    "debugger"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com https://cdn.mxpnl.com; object-src 'self'",
  "short_name": "__MSG_shortName__",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "3.69",
  "web_accessible_resources": [
    "images/*.png",
    "css/*.css",
    "settings.html",
    "setup.html"
  ]
}