Hudl Multi Screen
Allows to open a synchronized external video player for easier data entry when using multiple screens.
Hudl Multi Screen क्या है?
Hudl Multi Screen laurentchicoine द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows to open a synchronized external video player for easier data entry when using multiple screens."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hudl Multi Screen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Unofficial Hudl plugin that allows you to open a synchronized external video player for easier data entry when using multiple screens. Simply open your Hudl Library and click on the added icon that allows to open the external video player. *This extension is only for the American Football version of the Hudl Library. **You might need to restart your browser after the installation for the plugin to work. ***You should disable the snap detection feature in the player settings for optimal use.
एक्सटेंशन की मूल जानकारी
नाम | Hudl Multi Screen |
ID | jmlffnpibekcbkhffhhjjdakbenjclck |
आधिकारिक URL | https://chromewebstore.google.com/detail/hudl-multi-screen/jmlffnpibekcbkhffhhjjdakbenjclck |
विवरण | Allows to open a synchronized external video player for easier data entry when using multiple screens. |
फ़ाइल का आकार | 514 KB |
स्थापना संख्या | 3,262 |
वर्तमान संस्करण | 1.6 |
अंतिम अपडेट | 2023-11-17 |
प्रकाशन तिथि | 2019-08-20 |
रेटिंग | 5.00/5 कुल 5 रेटिंग्स |
डेवलपर | laurentchicoine |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Hudl Multi Screen", "description": "Allows to open a synchronized external video player for easier data entry when using multiple screens.", "version": "1.6", "action": { "default_icon": "icon-disabled.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "host_permissions": [ "*:\/\/*.hudl.com\/library\/*", "*:\/\/*.hudl.com\/watch\/team\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.hudl.com\/library\/*", "*:\/\/*.hudl.com\/watch\/team\/*" ], "js": [ "js\/jquery.min.js", "content_script.js" ], "run_at": "document_idle" } ], "background": { "service_worker": "background.js" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |