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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jp และคุณลักษณะหลักของมันคือ "Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Arrow Keys Fix

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Arrow Keys Fix ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}