Zoom Controls

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

Zoom Controls là gì?

Zoom Controls là một tiện ích mở rộng Chrome được phát triển bởi Rehan Ahmed, và tính năng chính của nó là "This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Zoom Controls

Tải xuống các tệp mở rộng Zoom Controls dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Zoom Controls Zoom Controls
ID henmmblkopelpkajjhhndaicecnccgff
URL Chính Thức https://chrome.google.com/webstore/detail/zoom-controls/henmmblkopelpkajjhhndaicecnccgff
Mô tả This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.
Kích Thước Tệp 298 KB
Số Lần Cài Đặt 108
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2021-11-23
Ngày Phát Hành 2021-09-14
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Rehan Ahmed
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/reallyrehan/zoomcontrols
URL Trang Trợ Giúp https://github.com/reallyrehan/zoomcontrols
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}