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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}