InventoryBase Media Keys

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

Co je InventoryBase Media Keys?

InventoryBase Media Keys je rozšíření Chrome vyvinuté https://inventorybase.co.uk, a jeho hlavní funkcí je „Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření InventoryBase Media Keys

Stáhněte si soubory rozšíření InventoryBase Media Keys ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název InventoryBase Media Keys InventoryBase Media Keys
ID cikohhogmfebfdgjfcjlfhpmckehpkfl
Oficiální URL https://chromewebstore.google.com/detail/inventorybase-media-keys/cikohhogmfebfdgjfcjlfhpmckehpkfl
Popis Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals.
Velikost souboru 107 KB
Počet instalací 73
Aktuální Verze 1.4
Poslední Aktualizace 2021-04-20
Datum Vydání 2019-07-09
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://inventorybase.co.uk
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://support.inventorybase.com/en/articles/1934137-working-from-recorded-audio-dictations
URL Stránky Zásad Ochrany Soukromí https://inventorybase.com/privacy
Podporované Jazyky 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"
}