Zoom Controls
This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.
Cos'è Zoom Controls?
Zoom Controls è un'estensione di Chrome sviluppata da Rehan Ahmed, e la sua funzione principale è "This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Zoom Controls
Scarica i file di estensione Zoom Controls in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Zoom Controls makes the default, recorded-video player on Zoom much better by adding keyboard shortcuts, variable playback rates, option to rewind/forward video, picture-in-picture mode, and more. NEW - Picture-in-Picture mode (Keyboard Shortcut - P ) - Zoom added forward/rewind by default, fixed support - Zoom added play/pause by Spacebar, fixed support Controls Rewind, Forward, Playback Indicator Keyboard Shortcuts Volume Up - Arrow ↑ Volume Down - Arrow ↓ Rewind - Arrow ← Forward - Arrow → Play/Pause - Spacebar Mute/Unmute - M Full Screen - F Subtitles - C Picture-In-Picture - P Video Speed Increase (Playback) - > Video Speed Decrease (Playback) - <
Informazioni di Base sull'Estensione
Nome | |
ID | henmmblkopelpkajjhhndaicecnccgff |
URL Ufficiale | https://chrome.google.com/webstore/detail/zoom-controls/henmmblkopelpkajjhhndaicecnccgff |
Descrizione | This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player. |
Dimensione del File | 298 KB |
Conteggio Installazioni | 108 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2021-11-23 |
Data di Pubblicazione | 2021-09-14 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Rehan Ahmed |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/reallyrehan/zoomcontrols |
URL della Pagina di Aiuto | https://github.com/reallyrehan/zoomcontrols |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Zoom Controls", "description": "This extension adds skip\/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.", "version": "1.1", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.zoom.us\/*" ], "js": [ "jquery.min.js", "utilities.js" ], "run_at": "document_idle" } ] } |