Voice Text

This app will transcribe your speech

Voice Textとは何ですか?

Voice TextはLKによって開発されたChromeの拡張機能で、その主な機能は「This app will transcribe your speech」です。

Voice Text拡張機能のCRXファイルをダウンロード

Voice Text拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Click on this chrome extension's icon once installed, and you'll be directed to a new tab. From there, click on "Speak" to start recording your speech and "Stop" to stop recording.

The supported language is English.                    

拡張機能の基本情報

名前 Voice Text Voice Text
ID aaioppfhljbjlidhkkehocbjjccoccmm
公式URL https://chrome.google.com/webstore/detail/voice-text/aaioppfhljbjlidhkkehocbjjccoccmm
説明 This app will transcribe your speech
ファイルサイズ 482 KB
インストール数 573
現在のバージョン 1.0.1
最終更新日 2017-08-06
公開日 2017-08-06
評価 4.20/5 合計 5 レビュー
開発者 LK
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Voice Text",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "This app will transcribe your speech",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "client\/index.js"
            ]
        }
    ],
    "background": {
        "page": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab"
    ]
}