YouTube™ Tracklist Control
Provides useful, cross-tab control functionalities when watching music-compilation videos on YouTube™.
YouTube™ Tracklist Controlคืออะไร?
YouTube™ Tracklist Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Xavier Duthil และคุณลักษณะหลักของมันคือ "Provides useful, cross-tab control functionalities when watching music-compilation videos on YouTube™."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube™ Tracklist Control
ดาวน์โหลดไฟล์ส่วนขยาย YouTube™ Tracklist Control ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension builds its own interactive tracklist by scanning for timestamped tracks in the video description or comments. The tracklist can be displayed from any tab and controlled via configurable global keyboard shortcuts (defaults are the keyboard's media buttons). Features: - Media control (play, pause, rewind, fast-forward, previous track, next track) - Tracklist building from the video description or comments - Tracklist navigation - Clickable progress bar on current song - Support of keyboard media keys (configurable global keyboard shortcuts) - Cross-tab interactivity (view and control the tracklist from any tab) - Push notifications on track/video change (toggleable setting) Changelog: https://github.com/XavierDuthil/youtube-tracklist-control/blob/master/CHANGELOG.md Source: https://github.com/XavierDuthil/youtube-tracklist-control
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube™ Tracklist Control |
ID | acdincmjdbdcndnidcmajippglnbplhk |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/acdincmjdbdcndnidcmajippglnbplhk |
คำอธิบาย | Provides useful, cross-tab control functionalities when watching music-compilation videos on YouTube™. |
ขนาดไฟล์ | 664 KB |
จำนวนการติดตั้ง | 554 |
เวอร์ชันปัจจุบัน | 2.7.1 |
อัปเดตครั้งล่าสุด | 2023-09-15 |
วันที่เผยแพร่ | 2019-06-14 |
คะแนน | 4.75/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | Xavier Duthil |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/XavierDuthil/youtube-tracklist-control |
ภาษาที่รองรับ | de,en,en-GB,en-US,fr,es,it |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.7.1", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "browser_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_popup": "popup.html", "default_title": "YouTube\u2122 Tracklist Control" }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "activeTab", "notifications", "storage", "tabs", "background", "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch?v=*" ], "js": [ "js\/contentScript.js" ] } ], "commands": { "cmd_previous_track": { "suggested_key": { "default": "MediaPrevTrack" }, "description": "Previous track", "global": true }, "cmd_rewind": { "description": "Rewind 5 seconds", "global": true }, "cmd_play_pause": { "suggested_key": { "default": "MediaPlayPause" }, "description": "Play\/pause", "global": true }, "cmd_fast_forward": { "description": "Fast forward 5 seconds", "global": true }, "cmd_next_track": { "suggested_key": { "default": "MediaNextTrack" }, "description": "Next track", "global": true } } } |