Transcription Helper

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

Transcription Helper là gì?

Transcription Helper là một tiện ích mở rộng Chrome được phát triển bởi dfa, và tính năng chính của nó là "Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Transcription Helper

Tải xuống các tệp mở rộng Transcription Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Transcription Helper Transcription Helper
ID chmkgbchecaliljnmpkdencihbopeodo
URL Chính Thức https://chromewebstore.google.com/detail/transcription-helper/chmkgbchecaliljnmpkdencihbopeodo
Mô tả Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information.
Kích Thước Tệp 913 KB
Số Lần Cài Đặt 1,470
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2012-08-14
Ngày Phát Hành 2012-08-14
Đánh Giá 2.29/5 Tổng số 14 Đánh Giá
Nhà Phát Triển dfa
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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",
        "*:\/\/*\/*"
    ]
}