Video Playback Extension

A full-featured video and audio player extension. Control playback speed, skipping, rewinding and more.

Video Playback Extension là gì?

Video Playback Extension là một tiện ích mở rộng Chrome được phát triển bởi sunwhydev, và tính năng chính của nó là "A full-featured video and audio player extension. Control playback speed, skipping, rewinding and more.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        Speed up, slow down, advance and rewind HTML5 audio/video elements either with shortcuts or using a clean, elegant interface.

Optimize your media experience by:

- controlling media on just your current active or across all tabs in Chrome
- customizing playback speed
- skipping forward or backward by custom time intervals
- looping
- restarting media from the very beginning
- playing
- pausing
- an experimental Theater Mode (for video only)
- customizable one key shortcuts for all actions

Once the extension is installed, navigate to any page with an HTML5 video or audio element and click on the extension to bring down the Player User Interface. Any changes made will affect all audio/video elements on the page and you can optionally control media across all tabs in Chrome using the Player UI.

Default Shortcuts:

- `s` = Decrease playback speed by .25
- `w` = Increase playback speed by .25
- `l` = Loop
- `o` = Pause
- `p` = Play
- `e` = Reset playback speed
- `r` = Restart
- `a`= Skip backward by the Skip Interval set in the Player UI
- `d` = Skip forward by the Skip Interval set in the Player UI
- `t` = Theater Mode                    

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

Tên Video Playback Extension Video Playback Extension
ID dilncfnkialpgbnpcjmghnepnankdibk
URL Chính Thức https://chromewebstore.google.com/detail/video-playback-extension/dilncfnkialpgbnpcjmghnepnankdibk
Mô tả A full-featured video and audio player extension. Control playback speed, skipping, rewinding and more.
Kích Thước Tệp 68.6 KB
Số Lần Cài Đặt 896
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2021-02-16
Ngày Phát Hành 2021-01-09
Đánh Giá 4.89/5 Tổng số 9 Đánh Giá
Nhà Phát Triển sunwhydev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sunnyw1212/video-playback-extension#-video-playback-extension
URL Trang Trợ Giúp https://www.buymeacoffee.com/sunwhy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A full-featured video and audio player extension. Control playback speed, skipping, rewinding and more.",
    "version": "1.0.4",
    "name": "Video Playback Extension",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon34.png"
    },
    "icons": {
        "34": "icon34.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "web_accessible_resources": [
        "netflix.bundle.js"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "commands": {
        "decrease-playback-rate": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Decrease Playback Rate By .25"
        },
        "increase-playback-rate": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Increase Playback Rate By .25"
        },
        "skip-forward": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right"
            },
            "description": "Skip Forward By Set Skip Interval"
        },
        "skip-backward": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left"
            },
            "description": "Skip Backward By Set Skip Interval"
        }
    }
}