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.」です。

拡張機能のスクリーンショット

screenshot

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 InventoryBase Media Keys
ID cikohhogmfebfdgjfcjlfhpmckehpkfl
公式URL 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
Eメール [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"
}