HTML5 Video Keyboard Shortcuts

Add keyboard support to Chrome's native HTML5 video player.

HTML5 Video Keyboard Shortcuts là gì?

HTML5 Video Keyboard Shortcuts là một tiện ích mở rộng Chrome được phát triển bởi AjaxGb, và tính năng chính của nó là "Add keyboard support to Chrome's native HTML5 video player.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng HTML5 Video Keyboard Shortcuts

Tải xuống các tệp mở rộng HTML5 Video Keyboard Shortcuts 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

                        Tired of Chrome's primitive built-in HTML5 video player?

This extension adds an extensive list of keyboard controls to improve your viewing experience. The shortcuts are only active on videos with the default controls enabled, so don't worry about them messing up YouTube or other custom video players. To enable controls (and keyboard shortcuts) on videos that don't have them, just right-click the video in question and select "Show controls".

Note that this extension is only meant to affect Chrome's native HTML5 video player!

==============================

FULL LIST OF SHORTCUTS:

-Click:
    Select video, Play/Pause selected video
-Double-Click / F:
    Toggle fullscreen
-Space / K:
    Play/Pause
-Left Arrow / J:
    Skip back 5 seconds
    -with Shift: 10 seconds
    -with Control: 1 second
-Right Arrow / L:
    Skip forward 5 seconds
    -with Shift: 10 seconds
    -with Control: 1 second
-Comma (,):
    Skip back 1/60th of a second
-Period (.):
    Skip forward 1/60th of a second
-Home / 0:
    Skip to beginning
-End:
    Skip to end
-Numbers 1 - 9:
    Skip to X% (10%, 20%, 30%, ... 90%)
-Up Arrow:
    Increase volume
-Down Arrow:
    Decrease volume
-M:
    Toggle mute
-C:
    Toggle captions
-R:
    Reload video file
-Less Than (<):
    Slow down video playback
-Greater Than (>):
    Speed up video playback
-Question Mark (?):
    Return to default playback speed

==============================

This extension is open source!
https://github.com/AjaxGb/Better-Chrome-Native-Video

Changelog:
-v4.1.4
    -Fix numpad numbers not working (thanks sauravc)
    -Update extension to Manifest V3
-v4.1.3 - Fix options page not working with HTML5.1
-v4.1.2 - Improve direct videos' compatibility with other extensions
-v4.1.1 - Fixed unwanted wrapping on options page
-v4.1
    -Default values for options displayed in hover text
    -Added arrow key skip amounts to options
    -Added ability to enable shortcuts on videos that do not use the default controls
        -Disabled by default; see options page
-v4.0.4 - Fixed clicks not working on standalone videos
-v4.0.3 - Fixed multiline options being squashed
-v4.0.2 - Improved visibility of disabled options
-v4.0.1 - Fixed delay not working on standalone videos
-v4.0
    -Added an options menu!
    -Added a slight (optional) delay to clicks
        -Prevents double-click briefly play/pausing the video
-v3.4 - Added Double-Click to toggle fullscreen
-v3.3.1 - Made performance improvements more stable
-v3.3
    -Added "C" to toggle captions
    -Major performance improvements
-v3.2
    -Fixed error when disabling shortcuts on a video
    -Added auto-focus when shortcuts are re-enabled
-v3.1
    -Fixed keyboard shortcuts activating unintentionally
        -For example, Ctrl-F used to fullscreen the active video
    -Holding Ctrl while skipping left/right changes skip length to 1 second
-v3.0 - Added right-click option to disable shortcuts on individual videos
-v2.0
    -Major behind-the-scenes refactoring
    -Better prevention of default key events
-v1.5 - Fixed some dynamically added videos being ignored
-v1.4 - Added "R" to reload video
-v1.3
    -Bug report "Works as Intended", v1.2 reverted
    -Videos get focus when fullscreened
    -Minor bugfixes
-v1.2
    -Added forward compatibility for when this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=592245
-v1.1 - Moved to GitHub
-v1.0 - Initial release                    

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

Tên HTML5 Video Keyboard Shortcuts HTML5 Video Keyboard Shortcuts
ID llhmaciggnibnbdokidmbilklceaobae
URL Chính Thức https://chromewebstore.google.com/detail/html5-video-keyboard-shor/llhmaciggnibnbdokidmbilklceaobae
Mô tả Add keyboard support to Chrome's native HTML5 video player.
Kích Thước Tệp 44.07 KB
Số Lần Cài Đặt 7,347
Phiên Bản Hiện Tại 4.1.4
Cập Nhật Lần Cuối 2023-12-22
Ngày Phát Hành 2017-08-14
Đánh Giá 4.11/5 Tổng số 93 Đánh Giá
Nhà Phát Triển AjaxGb
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/AjaxGb/Better-Chrome-Native-Video
URL Trang Trợ Giúp https://github.com/AjaxGb/Better-Chrome-Native-Video/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "name": "__MSG_extName__",
    "short_name": "__MSG_shrtExtName__",
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "version": "4.1.4",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "page.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ]
}