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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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",
        "*:\/\/*\/*"
    ]
}