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
公式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",
        "*:\/\/*\/*"
    ]
}