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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Transcription Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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