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
擴展基本資訊
名稱 | InventoryBase Media Keys |
ID | cikohhogmfebfdgjfcjlfhpmckehpkfl |
官方網址 | 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" } |