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 هو إضافة Chrome تم تطويرها بواسطة Rehan Ahmed، والميزة الرئيسية لها هي "This extension adds skip/rewind, playback, picture-in-picture video controls & keyboard shortcuts to the Zoom Recorded Video player.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Zoom Controls

قم بتنزيل ملفات الامتداد Zoom Controls بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
        }
    ]
}