Talk to Type

Type to Talk can help you type with your voice. Forget typing forever.

Was ist Talk to Type?

Talk to Type ist eine Chrome-Erweiterung, die von Codinglastnight entwickelt wurde, und ihr Hauptmerkmal ist "Type to Talk can help you type with your voice. Forget typing forever.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Talk to Type-Erweiterungs-CRX-Datei herunterladen

Laden Sie Talk to Type-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This an amazing chrome plugin which will let you forget “Typing” forever.

Why type anymore when you can just speak to your computer and it will type for you. Just allow microphone permission for the web page to enable this feature.

Features:

-Handles your typing with your voice.
-Fasten up your content writing.                    

Grundlegende Informationen zur Erweiterung

Name Talk to Type Talk to Type
ID jknlachcffnpbhepehiifoahpicoeafc
Offizielle URL https://chrome.google.com/webstore/detail/talk-to-type/jknlachcffnpbhepehiifoahpicoeafc
Beschreibung Type to Talk can help you type with your voice. Forget typing forever.
Dateigröße 206 KB
Installationsanzahl 1,000
Aktuelle Version 0.0.0.1
Letztes Update 2018-08-31
Veröffentlichungsdatum 2018-08-31
Bewertung 2.71/5 Insgesamt 7 Bewertungen
Entwickler Codinglastnight
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Talk to Type",
    "version": "0.0.0.1",
    "description": "Type to Talk can help you type with your voice. Forget typing forever.",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": ".\/icon\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "*:\/\/*.google.com\/"
    ],
    "icons": {
        "16": "\/icon\/icon16.png",
        "48": "\/icon\/icon48.png",
        "128": "\/icon\/icon128.png"
    }
}