Transcription Helper

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

Qu'est-ce que Transcription Helper ?

Transcription Helper est une extension Chrome développée par dfa, et sa fonction principale est "Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Transcription Helper

Téléchargez les fichiers d'extension Transcription Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Transcription Helper Transcription Helper
ID chmkgbchecaliljnmpkdencihbopeodo
URL Officiel https://chromewebstore.google.com/detail/transcription-helper/chmkgbchecaliljnmpkdencihbopeodo
Description Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information.
Taille du Fichier 913 KB
Nombre d'Installations 1,470
Version Actuelle 1.2
Dernière Mise à Jour 2012-08-14
Date de Publication 2012-08-14
Évaluation 2.29/5 Total 14 Évaluations
Développeur dfa
Type de Paiement free
Langues Prises en Charge 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",
        "*:\/\/*\/*"
    ]
}