InventoryBase Media Keys
Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.
O que é InventoryBase Media Keys?
InventoryBase Media Keys é uma extensão do Chrome desenvolvida por https://inventorybase.co.uk, e sua principal característica é "Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão InventoryBase Media Keys
Baixe arquivos de extensão InventoryBase Media Keys no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Enable global media key shortcuts to control the InventoryBase Audio Player for playing back audio dictations
Informações Básicas da Extensão
Nome | InventoryBase Media Keys |
ID | cikohhogmfebfdgjfcjlfhpmckehpkfl |
URL Oficial | https://chromewebstore.google.com/detail/inventorybase-media-keys/cikohhogmfebfdgjfcjlfhpmckehpkfl |
Descrição | Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals. |
Tamanho do Arquivo | 107 KB |
Contagem de Instalações | 73 |
Versão Atual | 1.4 |
Última Atualização | 2021-04-20 |
Data de Publicação | 2019-07-09 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | https://inventorybase.co.uk |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://support.inventorybase.com/en/articles/1934137-working-from-recorded-audio-dictations |
URL da Página de Política de Privacidade | https://inventorybase.com/privacy |
Idiomas Suportados | 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" } |