Zoom Controls
This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.
Was ist Zoom Controls?
Zoom Controls ist eine Chrome-Erweiterung, die von Rehan Ahmed entwickelt wurde, und ihr Hauptmerkmal ist "This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.".
Erweiterungsscreenshots
Zoom Controls-Erweiterungs-CRX-Datei herunterladen
Laden Sie Zoom Controls-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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) - <
Grundlegende Informationen zur Erweiterung
Name | |
ID | henmmblkopelpkajjhhndaicecnccgff |
Offizielle URL | https://chrome.google.com/webstore/detail/zoom-controls/henmmblkopelpkajjhhndaicecnccgff |
Beschreibung | This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player. |
Dateigröße | 298 KB |
Installationsanzahl | 108 |
Aktuelle Version | 1.1 |
Letztes Update | 2021-11-23 |
Veröffentlichungsdatum | 2021-09-14 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Rehan Ahmed |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/reallyrehan/zoomcontrols |
Hilfeseite URL | https://github.com/reallyrehan/zoomcontrols |
Unterstützte Sprachen | 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" } ] } |