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是由dfa開發的Chrome擴展程式,該擴展的主要功能是“Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information.”。

擴展截圖

screenshot

下載Transcription Helper擴展crx文件

下載Transcription Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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",
        "*:\/\/*\/*"
    ]
}