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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://inventorybase.co.uk และคุณลักษณะหลักของมันคือ "Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย InventoryBase Media Keys

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
}