Voice Text

This app will transcribe your speech

Voice Textคืออะไร?

Voice Text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย LK และคุณลักษณะหลักของมันคือ "This app will transcribe your speech"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Voice Text

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}