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
Eメール [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"
        }
    ]
}