InventoryBase Media Keys

Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.

Co to jest InventoryBase Media Keys?

InventoryBase Media Keys to rozszerzenie Chrome opracowane przez https://inventorybase.co.uk, a jego główną funkcją jest „Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia InventoryBase Media Keys

Pobierz pliki rozszerzeń InventoryBase Media Keys w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Enable global media key shortcuts to control the InventoryBase Audio Player for playing back audio dictations                    

Podstawowe informacje o rozszerzeniu

Nazwa InventoryBase Media Keys InventoryBase Media Keys
ID cikohhogmfebfdgjfcjlfhpmckehpkfl
Oficjalny URL https://chromewebstore.google.com/detail/inventorybase-media-keys/cikohhogmfebfdgjfcjlfhpmckehpkfl
Opis Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.
Rozmiar pliku 107 KB
Liczba instalacji 73
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2021-04-20
Data Publikacji 2019-07-09
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://inventorybase.co.uk
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://support.inventorybase.com/en/articles/1934137-working-from-recorded-audio-dictations
Adres URL Strony Polityki Prywatności https://inventorybase.com/privacy
Obsługiwane Języki 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"
}