YouTube Arrow Keys Fix

Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.

YouTube Arrow Keys Fix란 무엇입니까?

YouTube Arrow Keys Fix은(는) jp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control."입니다.

확장 프로그램 스크린샷

screenshot

YouTube Arrow Keys Fix 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension ensures that the left and right arrow keys always navigate the video timeline, while the up and down arrow keys always control the volume, regardless of the focus on the player.                    

확장 프로그램 기본 정보

이름 YouTube Arrow Keys Fix YouTube Arrow Keys Fix
ID hbnlngeljeofecndhmebgpgpccfnkgjb
공식 URL https://chromewebstore.google.com/detail/youtube-arrow-keys-fix/hbnlngeljeofecndhmebgpgpccfnkgjb
설명 Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.
파일 크기 45.87 KB
설치 횟수 258
현재 버전 1.0
최근 업데이트 2023-04-19
출시 날짜 2023-04-18
평점 5.00/5 총 5 개의 평점
개발자 jp
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/JParramore/youtube-arrow-keys-fix
도움말 페이지 URL https://github.com/JParramore/youtube-arrow-keys-fix
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Arrow Keys Fix",
    "version": "1.0",
    "description": "Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}