Change Video Playback Speeds

Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance.

Change Video Playback Speeds là gì?

Change Video Playback Speeds là một tiện ích mở rộng Chrome được phát triển bởi Torey Littlefield, và tính năng chính của nó là "Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance.".

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

screenshot
screenshot

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

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

                        Adjust playback speed on most videos including most videos embedded in an iframe. Works with YouTube, Netflix, and other supported video players. Includes additional controls for customizing the styles of Netflix subtitles for more pleasant viewing or greater contrast for readability!

Change Video Playback Speeds is a quick way to speed up or slow down videos by easily moving the slider in the extension popup. Your preferred video playback video is automatically saved but can be reset back to the default speed.

Some features:
- Change speed from 0.0x up to 10x
- Adjust the style of Netflix subtitles by font color, font weight, font size, and screen position.

Getting started: If a video is found on a webpage the extension icon with have a purple background. Just click the icon and adjust the slider to change the video playback speed.                    

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

Tên Change Video Playback Speeds Change Video Playback Speeds
ID ncnbdjhoplchclmeanmckpmobhmodlio
URL Chính Thức https://chromewebstore.google.com/detail/change-video-playback-spe/ncnbdjhoplchclmeanmckpmobhmodlio
Mô tả Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance.
Kích Thước Tệp 53.14 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2021-08-30
Ngày Phát Hành 2021-08-30
Nhà Phát Triển Torey Littlefield
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/toreylittlefield/Video-Player-Chrome-Extension
URL Trang Trợ Giúp https://github.com/toreylittlefield/Video-Player-Chrome-Extension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Change Video Playback Speeds",
    "action": {
        "default_popup": ".\/src\/Popup\/disabled.html",
        "default_title": "Control Video Playback Speed",
        "default_icon": {
            "16": "images\/online-video_16.png",
            "48": "images\/online-video_48.png",
            "128": "images\/online-video_128.png"
        }
    },
    "manifest_version": 3,
    "version": "0.1",
    "description": "Quickly adjust video playback speeds with a simple slider. Customize Netflix subtitles appearance.",
    "permissions": [
        "activeTab",
        "tabs",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "images\/online-video_16.png",
        "48": "images\/online-video_48.png",
        "128": "images\/online-video_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                ".\/dist\/content_scripts.js"
            ]
        }
    ]
}