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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control the InventoryBase report audio player with your keyboard media keys or external devices, like pedals."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में InventoryBase Media Keys एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Enable global media key shortcuts to control the InventoryBase Audio Player for playing back audio dictations
एक्सटेंशन की मूल जानकारी
नाम | 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" } |