Youtube speed control

This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?

Youtube speed control là gì?

Youtube speed control là một tiện ích mở rộng Chrome được phát triển bởi wwf4, và tính năng chính của nó là "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?".

Ả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 Youtube speed control

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

                        ctrl + > - to speed up video
ctrl + < - to slow down video
ctrl + ? - to return x1 speed;                    

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

Tên Youtube speed control Youtube speed control
ID gdnknkknodmhgpompjfmhcodhcnamldo
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo
Mô tả This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
Kích Thước Tệp 70.77 KB
Số Lần Cài Đặt 623
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-11-10
Ngày Phát Hành 2017-11-10
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển wwf4
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": 2,
    "name": "Youtube speed control",
    "description": "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?",
    "version": "1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "all_frames": true
        }
    ]
}