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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
}