Imedical Transcription Extension
Complementary extension of the imedical's Transcription web platform application
什么是Imedical Transcription Extension?
Imedical Transcription Extension是由i-medical开发的Chrome扩展程序,该扩展的主要功能是“Complementary extension of the imedical's Transcription web platform application”。
下载Imedical Transcription Extension扩展crx文件
下载Imedical Transcription Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | |
ID | imfpohhlkpglnodbojepcffgnnajceab |
官方URL | https://chrome.google.com/webstore/detail/imedical-transcription-ex/imfpohhlkpglnodbojepcffgnnajceab |
简介 | Complementary extension of the imedical's Transcription web platform application |
文件大小 | 75.01 KB |
安装次数 | 37 |
当前版本 | 1.1 |
更新时间 | 2016-08-29 |
上架时间 | 2016-08-29 |
开发者 | i-medical |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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." } } } |