InventoryBase Media Keys
Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.
InventoryBase Media Keys là gì?
InventoryBase Media Keys là một tiện ích mở rộng Chrome được phát triển bởi https://inventorybase.co.uk, và tính năng chính của nó là "Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng InventoryBase Media Keys
Tải xuống các tệp mở rộng InventoryBase Media Keys dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Enable global media key shortcuts to control the InventoryBase Audio Player for playing back audio dictations
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | InventoryBase Media Keys |
ID | cikohhogmfebfdgjfcjlfhpmckehpkfl |
URL Chính Thức | https://chromewebstore.google.com/detail/inventorybase-media-keys/cikohhogmfebfdgjfcjlfhpmckehpkfl |
Mô tả | Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals. |
Kích Thước Tệp | 107 KB |
Số Lần Cài Đặt | 73 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2021-04-20 |
Ngày Phát Hành | 2019-07-09 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://inventorybase.co.uk |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://support.inventorybase.com/en/articles/1934137-working-from-recorded-audio-dictations |
URL Trang Chính Sách Bảo Mật | https://inventorybase.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" } |