Youtube Navigation Shortcuts

This extension lets you use arrow/WASD keys to navigate through youtube search list.

Youtube Navigation Shortcuts là gì?

Youtube Navigation Shortcuts là một tiện ích mở rộng Chrome được phát triển bởi pokhrelashok2, và tính năng chính của nó là "This extension lets you use arrow/WASD keys to navigate through youtube search list.".

Ả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 Navigation Shortcuts

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

                        Youtube doesn't support navigation using arrow keys or WASD by default. This extension enables navigational shortcuts for youtube. Using this extension you can change vidoes just by using ctrl + arrow keys or by using WASD.
You cannot just use arrow keys because youtube has its own set of shortcuts to seek playback and increase/decrease volume using the arrow keys. This extension lets you use CTRL (windows) / CMD (mac) + the Arrow keys to navigate through the videos and press Enter to select and view a video.
WASD shortcuts are disabled by default, but you can enable them from the settings.                    

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

Tên Youtube Navigation Shortcuts Youtube Navigation Shortcuts
ID jfecpfnhkgikbhhdeecbmghfonmfnged
URL Chính Thức https://chromewebstore.google.com/detail/youtube-navigation-shortc/jfecpfnhkgikbhhdeecbmghfonmfnged
Mô tả This extension lets you use arrow/WASD keys to navigate through youtube search list.
Kích Thước Tệp 14.94 KB
Số Lần Cài Đặt 16
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2022-09-14
Ngày Phát Hành 2022-09-13
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển pokhrelashok2
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/8e8dc6bc-d803-4edf-bdd5-5fff5c7c795a
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Navigation Shortcuts",
    "description": "This extension lets you use arrow\/WASD keys to navigate through youtube search list.",
    "version": "1.3",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "listener.js"
            ]
        }
    ],
    "icons": {
        "500": "icon.png"
    },
    "author": "Ashok Pahadi",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Press Ctrl(Win)\/Command(Mac)+Arrow Keys or WASD to navigate through videos"
    }
}