Zoom Controls

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

什么是Zoom Controls?

Zoom Controls是由Rehan Ahmed开发的Chrome扩展程序,该扩展的主要功能是“This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.”。

扩展截图

screenshot
screenshot
screenshot

下载Zoom Controls扩展crx文件

下载Zoom Controls扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Zoom Controls Zoom Controls
ID henmmblkopelpkajjhhndaicecnccgff
官方URL https://chrome.google.com/webstore/detail/zoom-controls/henmmblkopelpkajjhhndaicecnccgff
简介 This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.
文件大小 298 KB
安装次数 108
当前版本 1.1
更新时间 2021-11-23
上架时间 2021-09-14
评分 5.00/5 共3次评分
开发者 Rehan Ahmed
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/reallyrehan/zoomcontrols
帮助页面URL https://github.com/reallyrehan/zoomcontrols
支持的语言 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"
        }
    ]
}