Transcription Helper

Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information.

ما هو Transcription Helper؟

Transcription Helper هو إضافة Chrome تم تطويرها بواسطة dfa، والميزة الرئيسية لها هي "Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Transcription Helper

قم بتنزيل ملفات الامتداد Transcription Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Helper extension for transcribing audio files. The extension allows to load audio files and use keyboard shortcuts to increase/decrease the speed and rewind the audio. The shortcuts are:

Play/Pause: Ctrl+Alt+P
Rewind: Ctrl+Alt+B
Slower: Ctrl+Alt+S
Faster: Ctrl+Alt+F

Load an audio file by either right clicking on a link to such a file and choosing "Load in Transcription Helper" or pasting the URL in the extension pop-up (click the symbol next to the URL bar). The extension works in the background, so you can transcribe in your favourite cloud editor.                    

معلومات أساسية عن التمديد

الاسم Transcription Helper Transcription Helper
ID chmkgbchecaliljnmpkdencihbopeodo
عنوان URL الرسمي https://chromewebstore.google.com/detail/transcription-helper/chmkgbchecaliljnmpkdencihbopeodo
الوصف Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information.
حجم الملف 913 KB
عدد التثبيتات 1,470
النسخة الحالية 1.2
آخر تحديث 2012-08-14
تاريخ النشر 2012-08-14
تقييم 2.29/5 مجموع تقييمات 14
المطور dfa
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Transcription Helper",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information.",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "128": "icon_128.png"
    },
    "background": {
        "page": "background.html",
        "script": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "functions.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "*:\/\/*\/*"
    ]
}