HoloSongs
Integrate Holodex features into YouTube!
HoloSongs là gì?
HoloSongs là một tiện ích mở rộng Chrome được phát triển bởi mintchoco, và tính năng chính của nó là "Integrate Holodex features into 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 HoloSongs
Tải xuống các tệp mở rộng HoloSongs 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
Powered by the global Holodex community, HoloSongs adds a full featured media player to long YouTube livestreams so you can seek to your favorite songs and play them on repeat. *** Features *** Full featured media player alongside singing streams - Setlist at a glance - Seek and skip individual songs - Repeat mode - Music mode (skips talking segments) Works with most videos from your favorite streamers, including streamers from Hololive, Nijisanji and other organizations. *** What's new in v1.1.1 *** - Fixed an issue with setlist appearance *** Previous updates *** v1.1.0 - Songs without artwork now display a placeholder - Setlist is now collapsible - Improved the look of the setlist's scrollbar - Fixed an issue that caused incorrect setlists to sometimes appear
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | HoloSongs |
ID | ipibfcnlipdkimfmajnddpboejkocplf |
URL Chính Thức | https://chromewebstore.google.com/detail/holosongs/ipibfcnlipdkimfmajnddpboejkocplf |
Mô tả | Integrate Holodex features into YouTube! |
Kích Thước Tệp | 284 KB |
Số Lần Cài Đặt | 264 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2023-04-05 |
Ngày Phát Hành | 2023-01-29 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | mintchoco |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/themintchoco/holosongs |
URL Trang Trợ Giúp | https://github.com/themintchoco/holosongs/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "HoloSongs", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "alarms", "scripting", "storage" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "*.js", "assets\/*" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ], "version": "1.1.1", "description": "Integrate Holodex features into YouTube!" } |