YouTube™ Tracklist Control
Provides useful, cross-tab control functionalities when watching music-compilation videos on YouTube™.
YouTube™ Tracklist Control là gì?
YouTube™ Tracklist Control là một tiện ích mở rộng Chrome được phát triển bởi Xavier Duthil, và tính năng chính của nó là "Provides useful, cross-tab control functionalities when watching music-compilation videos on YouTube™.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube™ Tracklist Control
Tải xuống các tệp mở rộng YouTube™ Tracklist Control dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube™ Tracklist Control |
ID | acdincmjdbdcndnidcmajippglnbplhk |
URL Chính Thức | https://chrome.google.com/webstore/detail/acdincmjdbdcndnidcmajippglnbplhk |
Mô tả | Provides useful, cross-tab control functionalities when watching music-compilation videos on YouTube™. |
Kích Thước Tệp | 664 KB |
Số Lần Cài Đặt | 554 |
Phiên Bản Hiện Tại | 2.7.1 |
Cập Nhật Lần Cuối | 2023-09-15 |
Ngày Phát Hành | 2019-06-14 |
Đánh Giá | 4.75/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Xavier Duthil |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/XavierDuthil/youtube-tracklist-control |
Ngôn Ngữ Được Hỗ Trợ | 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 } } } |