YouTube Hotkeys
Your YouTube Hotkeys for play, pause, play next video and repeat.
YouTube Hotkeysคืออะไร?
YouTube Hotkeys เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Giovani Silva และคุณลักษณะหลักของมันคือ "Your YouTube Hotkeys for play, pause, play next video and repeat."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Hotkeys
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Hotkeys ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds hotkeys to your youTube page, now you can control the videos you are watching from anywhere, even when you are away from browser! You can also set your video to repeat, check the extension icon to know when your video is in repeating mode or not. Default Keyboard shortcuts: Next Video : Alt+Shift+Period Play/Pause : Alt+Shift+P Previous Video : Alt+Shift+Comma Repeat Video : Alt+Shift+R To configure go to chrome://extensions/configureCommands
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | nikecddgokknoehjljdkhkilicpcacmo |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-hotkeys/nikecddgokknoehjljdkhkilicpcacmo |
คำอธิบาย | Your YouTube Hotkeys for play, pause, play next video and repeat. |
ขนาดไฟล์ | 75.94 KB |
จำนวนการติดตั้ง | 785 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2018-04-06 |
วันที่เผยแพร่ | 2018-04-06 |
คะแนน | 4.53/5 รวมทั้งหมด 15 คะแนน |
ผู้พัฒนา | Giovani Silva |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Hotkeys", "description": "Your YouTube Hotkeys for play, pause, play next video and repeat.", "version": "1.1", "incognito": "split", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "next": { "description": "Next track", "suggested_key": "Alt+Shift+Period" }, "play-pause": { "description": "Play\/Pause", "suggested_key": "Alt+Shift+P" }, "previous": { "description": "Previous track", "suggested_key": "Alt+Shift+Comma" }, "repeat": { "description": "Repeat", "suggested_key": "Alt+Shift+R" } }, "browser_action": { "default_icon": "assets\/icon.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "script.js", "content.js" ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "background", "contentSettings" ], "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |