Youtube Custom Speed

Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!

Youtube Custom Speed là gì?

Youtube Custom Speed là một tiện ích mở rộng Chrome được phát triển bởi nizioleque, và tính năng chính của nó là "Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Custom Speed

Tải xuống các tệp mở rộng Youtube Custom Speed 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

                        Youtube Custom Speed lets you play any Youtube video at any speed you like, from 0.0125x to 16x!

Use the options menu to set your preferred playback rate values. Then, change the speed using buttons at the bottom of the video. It also cooperates with the default Youtube keyboard shortcuts - Shift + , and Shift + .

If you experience any issues, please feel free to email me with a bug report.                    

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

Tên Youtube Custom Speed Youtube Custom Speed
ID kmfcinojnfabkpndlgomnfjllgeppegb
URL Chính Thức https://chromewebstore.google.com/detail/youtube-custom-speed/kmfcinojnfabkpndlgomnfjllgeppegb
Mô tả Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!
Kích Thước Tệp 26.33 KB
Số Lần Cài Đặt 6,263
Phiên Bản Hiện Tại 1.6.1
Cập Nhật Lần Cuối 2022-02-19
Ngày Phát Hành 2021-12-02
Đánh Giá 4.71/5 Tổng số 48 Đánh Giá
Nhà Phát Triển nizioleque
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.6.1",
    "default_locale": "en",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/changespeed.js",
                "content\/kbshort.js",
                "content\/menu.js",
                "content\/observer.js",
                "content\/configure.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "ui.html"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    }
}