Youtube Navigation Shortcuts

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

Youtube Navigation Shortcuts란 무엇입니까?

Youtube Navigation Shortcuts은(는) pokhrelashok2에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension lets you use arrow/WASD keys to navigate through youtube search list."입니다.

확장 프로그램 스크린샷

screenshot

Youtube Navigation Shortcuts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Youtube Navigation Shortcuts Youtube Navigation Shortcuts
ID jfecpfnhkgikbhhdeecbmghfonmfnged
공식 URL https://chromewebstore.google.com/detail/youtube-navigation-shortc/jfecpfnhkgikbhhdeecbmghfonmfnged
설명 This extension lets you use arrow/WASD keys to navigate through youtube search list.
파일 크기 14.94 KB
설치 횟수 16
현재 버전 1.3
최근 업데이트 2022-09-14
출시 날짜 2022-09-13
평점 4.75/5 총 4 개의 평점
개발자 pokhrelashok2
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/8e8dc6bc-d803-4edf-bdd5-5fff5c7c795a
지원되는 언어 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"
    }
}