Talk to Type

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

Что такое Talk to Type?

Talk to Type - это расширение Chrome, разработанное Codinglastnight, и его основная функция - "Type to Talk can help you type with your voice. Forget typing forever.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Talk to Type

Скачайте файлы расширений Talk to Type в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Talk to Type Talk to Type
ID jknlachcffnpbhepehiifoahpicoeafc
Официальный URL https://chrome.google.com/webstore/detail/talk-to-type/jknlachcffnpbhepehiifoahpicoeafc
Описание Type to Talk can help you type with your voice. Forget typing forever.
Размер файла 206 KB
Количество установок 1,000
Текущая Версия 0.0.0.1
Последнее Обновление 2018-08-31
Дата публикации 2018-08-31
Рейтинг 2.71/5 Всего 7 оценок
Разработчик Codinglastnight
Тип оплаты free
Поддерживаемые языки 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"
    }
}