Zoom Controls

This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.

Co to jest Zoom Controls?

Zoom Controls to rozszerzenie Chrome opracowane przez Rehan Ahmed, a jego główną funkcją jest „This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Zoom Controls

Pobierz pliki rozszerzeń Zoom Controls w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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) - <                    

Podstawowe informacje o rozszerzeniu

Nazwa Zoom Controls Zoom Controls
ID henmmblkopelpkajjhhndaicecnccgff
Oficjalny URL https://chrome.google.com/webstore/detail/zoom-controls/henmmblkopelpkajjhhndaicecnccgff
Opis This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.
Rozmiar pliku 298 KB
Liczba instalacji 108
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2021-11-23
Data Publikacji 2021-09-14
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Rehan Ahmed
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/reallyrehan/zoomcontrols
Adres URL Strony Pomocy https://github.com/reallyrehan/zoomcontrols
Obsługiwane Języki 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"
        }
    ]
}