Imedical Transcription Extension
Complementary extension of the imedical's Transcription web platform application
Was ist Imedical Transcription Extension?
Imedical Transcription Extension ist eine Chrome-Erweiterung, die von i-medical entwickelt wurde, und ihr Hauptmerkmal ist "Complementary extension of the imedical's Transcription web platform application".
Imedical Transcription Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie Imedical Transcription Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | imfpohhlkpglnodbojepcffgnnajceab |
| Offizielle URL | https://chrome.google.com/webstore/detail/imedical-transcription-ex/imfpohhlkpglnodbojepcffgnnajceab |
| Beschreibung | Complementary extension of the imedical's Transcription web platform application |
| Dateigröße | 75.01 KB |
| Installationsanzahl | 37 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2016-08-29 |
| Veröffentlichungsdatum | 2016-08-29 |
| Entwickler | i-medical |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | pt-PT |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Imedical Transcription Extension",
"description": "Complementary extension of the imedical's Transcription web platform application",
"icons": {
"16": "i-medical16.png",
"48": "i-medical48.png",
"128": "i-medical128.png"
},
"version": "1.1",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"jquery.min.js",
"inject.js"
],
"run_at": "document_start"
}
],
"commands": {
"pedal-forward-hotkey": {
"suggested_key": {
"default": "Alt+X",
"mac": "Alt+X"
},
"description": "Pedal forward audio command."
},
"pedal-rewind-hotkey": {
"suggested_key": {
"default": "Alt+B",
"mac": "Alt+B"
},
"description": "Pedal rewind audio command."
},
"pedal-playpause-hotkey": {
"suggested_key": {
"default": "Alt+A",
"mac": "Alt+A"
},
"description": "Pedal play\/pause audio command."
},
"pedal-stop-hotkey": {
"suggested_key": {
"default": "Ctrl+M",
"mac": "Ctrl+M"
},
"description": "Pedal stop audio command."
}
}
} | |