InventoryBase Media Keys
Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.
什么是InventoryBase Media Keys?
InventoryBase Media Keys是由https://inventorybase.co.uk开发的Chrome扩展程序,该扩展的主要功能是“Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.”。
扩展截图
下载InventoryBase Media Keys扩展crx文件
下载InventoryBase Media Keys扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Enable global media key shortcuts to control the InventoryBase Audio Player for playing back audio dictations 扩展基本信息
| 名称 | |
| ID | cikohhogmfebfdgjfcjlfhpmckehpkfl |
| 官方URL | https://chromewebstore.google.com/detail/inventorybase-media-keys/cikohhogmfebfdgjfcjlfhpmckehpkfl |
| 简介 | Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals. |
| 文件大小 | 107 KB |
| 安装次数 | 73 |
| 当前版本 | 1.4 |
| 更新时间 | 2021-04-20 |
| 上架时间 | 2019-07-09 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | https://inventorybase.co.uk |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://support.inventorybase.com/en/articles/1934137-working-from-recorded-audio-dictations |
| 隐私政策页面URL | https://inventorybase.com/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "InventoryBase Media Keys",
"version": "1.4",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"description": "Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.",
"homepage_url": "https:\/\/inventorybase.com",
"manifest_version": 2,
"commands": {
"prev": {
"suggested_key": {
"default": "MediaPrevTrack",
"mac": "MediaPrevTrack"
},
"description": "Rewind",
"global": true
},
"play-pause": {
"suggested_key": {
"default": "MediaPlayPause",
"mac": "MediaPlayPause"
},
"description": "Play\/Pause",
"global": true
},
"next": {
"suggested_key": {
"default": "MediaNextTrack",
"mac": "MediaNextTrack"
},
"description": "Fast Forward",
"global": true
},
"prev-pedal": {
"suggested_key": {
"default": "Ctrl+Shift+8",
"mac": "Command+Shift+8"
},
"description": "Rewind",
"global": true
},
"play-pause-pedal": {
"suggested_key": {
"default": "Ctrl+Shift+9",
"mac": "Command+Shift+9"
},
"description": "Play\/Pause",
"global": true
},
"next-pedal": {
"suggested_key": {
"default": "Ctrl+Shift+0",
"mac": "Command+Shift+0"
},
"description": "Fast Forward",
"global": true
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"ib-media-keys.js"
]
}
],
"options_page": "options\/options.html"
} | |