Youtube™ Shortcuts
Focus on the Youtube player with a the press of a button
Youtube™ Shortcutsคืออะไร?
Youtube™ Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Daniel Pham และคุณลักษณะหลักของมันคือ "Focus on the Youtube player with a the press of a button"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube™ Shortcuts
ดาวน์โหลดไฟล์ส่วนขยาย Youtube™ Shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A collection of keyboard shortcuts for YouTube to make navigation faster.
Show shortcut - Shift + /
Default Shortcuts:
Focus on the player - "." (dot/period)
Unfocus the current element - "Esc"
Go to subscription box - "H"
Go to user profile - "U"
Navigate video list - "J" & "K"
Navigate tab strip - "[ & ]"
Follow link to new tab - "Shift + Enter"
Like the video - "A"
Dislike the video - "Z"
Subscribe - "S"
Add to playlist - "P"
Expand video description - "O"
Source Code:
https://github.com/danhp/youtube-shortcuts ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | fnapinimcdpmgkedhjbfckmpjppnbhba |
| URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-shortcuts/fnapinimcdpmgkedhjbfckmpjppnbhba |
| คำอธิบาย | Focus on the Youtube player with a the press of a button |
| ขนาดไฟล์ | 68.71 KB |
| จำนวนการติดตั้ง | 548 |
| เวอร์ชันปัจจุบัน | 1.7.2 |
| อัปเดตครั้งล่าสุด | 2019-11-19 |
| วันที่เผยแพร่ | 2019-11-19 |
| คะแนน | 2.85/5 รวมทั้งหมด 20 คะแนน |
| ผู้พัฒนา | Daniel Pham |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/danhp/youtube-shortcuts |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Youtube\u2122 Shortcuts",
"version": "1.7.2",
"description": "Focus on the Youtube player with a the press of a button",
"homepage_url": "https:\/\/phamdaniel.github.io",
"options_page": "options.html",
"icons": {
"16": "imgs\/16.png",
"48": "imgs\/48.png",
"128": "imgs\/128.png"
},
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"run_at": "document_end",
"css": [
"lib\/facebox.css",
"popup.css"
],
"js": [
"lib\/jquery-3.0.0.min.js",
"lib\/keymaster.min.js",
"lib\/facebox.js",
"injected.js"
]
}
],
"web_accessible_resources": [
"popup.html"
]
} | |