vx

This extension listens to you and copies what you said to the clipboard.

¿Qué es vx?

vx es una extensión de Chrome desarrollada por dtinth, y su función principal es "This extension listens to you and copies what you said to the clipboard.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión vx

Descarga archivos de extensión vx en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        An extension that listens to you and copies what you said to the clipboard.

Copy to Clipboard
・ Unlike other “voice typing” extensions, vx only copies what you said to the clipboard.
・ Therefore, it works with all apps that lets you paste text; not just Google Chrome.
・ If the speech recognizer did not get it right, just say the phrase again (more slowly and clearly).
・ This makes it convenient for non-native speakers, not having to press the undo every time.
・ Some early users reported having 2x productivity over conventional voice typing solutions (such as the built-in Dictation that comes with macOS).

Language Support
・ Uses Google’s Web Speech API to do the speech recognition.
・ It supports at least 60 language and 101 dialects.

Bilingual Users Friendly
・ You can set up your “primary language” and “secondary language” and assign hotkeys to each language.

Display Output
・ vx displays the recognized text as you speak in a webpage or in a popup window. Can be enabled/disabled.

Notification Output
・ vx can display a notification when text is copied to the clipboard. Can be enabled/disabled.

Sound Feedback
・ vx emits a sound when the speech recognition session begins and ends, as well as when text is copied to the clipboard. Can be enabled/disabled.

Permissions
・ vx doesn’t require the “Read and change all your data on the websites you visit” permission.
・ vx doesn’t require the “Communicate with cooperating websites” permission.
・ vx requires microphone, clipboard, and notification access.

Totally Free
・ There is no paid version.
・ No support is provided for this extension either.
・ If you encounter any issue, the source code is available for you to build and debug yourself at https://github.com/dtinth/vxchrome.

Advanced Features for People Who Knows JavaScript
・ You can supply a custom JavaScript code to process the transcript before it’s being copied to the clipboard (a “custom transcript filter”).
・ You can also supply a custom JavaScript code to send the processed transcript elsewhere (a “custom output module”).
・ If you know JavaScript, this extension is essentially doing this: ((r = new webkitSpeechRecognition(), o = copy) => (r.lang = 'en', r.onresult = e => (x => (console.log(x), o(x)))(Array.from(e.results).map(r => r[0].transcript).join('')), r.start()))() // (you can run it in Chrome DevTools)

MIT License

Copyright (c) 2020 dtinth

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.                    

Información Básica de la Extensión

Nombre vx vx
ID obopnfigmanifpiojfhebcegjepgaiif
URL Oficial https://chromewebstore.google.com/detail/vx/obopnfigmanifpiojfhebcegjepgaiif
Descripción This extension listens to you and copies what you said to the clipboard.
Tamaño del Archivo 320 KB
Cantidad de Instalaciones 938
Versión Actual 0.5.2
Última Actualización 2020-04-04
Fecha de Publicación 2020-04-04
Calificación 4.57/5 Total de 7 Calificaciones
Desarrollador dtinth
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://dt.in.th/go/vx
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "vx",
    "description": "This extension listens to you and copies what you said to the clipboard.",
    "version": "0.5.2",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "commands": {
        "listen1": {
            "description": "Listen [first language]",
            "suggested_key": {
                "default": "Ctrl+Shift+0"
            }
        },
        "listen2": {
            "description": "Listen [second language]",
            "suggested_key": {
                "default": "Ctrl+Shift+9"
            }
        }
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "clipboardWrite",
        "notifications",
        "storage",
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "popup.html"
    ]
}