Hudl Multi Screen
Allows to open a synchronized external video player for easier data entry when using multiple screens.
Wat is Hudl Multi Screen?
Hudl Multi Screen is een Chrome-extensie ontwikkeld door laurentchicoine, en de belangrijkste functie is "Allows to open a synchronized external video player for easier data entry when using multiple screens.".
Extensie Screenshots
Download het CRX-bestand van de extensie Hudl Multi Screen
Download Hudl Multi Screen-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Hudl Multi Screen |
ID | jmlffnpibekcbkhffhhjjdakbenjclck |
Officiële URL | https://chromewebstore.google.com/detail/hudl-multi-screen/jmlffnpibekcbkhffhhjjdakbenjclck |
Beschrijving | Allows to open a synchronized external video player for easier data entry when using multiple screens. |
Bestandsgrootte | 514 KB |
Aantal Installaties | 3,262 |
Huidige Versie | 1.6 |
Laatst Bijgewerkt | 2023-11-17 |
Publicatiedatum | 2019-08-20 |
Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | laurentchicoine |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |