HoloSongs
Integrate Holodex features into YouTube!
HoloSongs란 무엇입니까?
HoloSongs은(는) mintchoco에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Integrate Holodex features into YouTube!"입니다.
확장 프로그램 스크린샷
HoloSongs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | HoloSongs |
ID | ipibfcnlipdkimfmajnddpboejkocplf |
공식 URL | https://chromewebstore.google.com/detail/holosongs/ipibfcnlipdkimfmajnddpboejkocplf |
설명 | Integrate Holodex features into YouTube! |
파일 크기 | 284 KB |
설치 횟수 | 264 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2023-04-05 |
출시 날짜 | 2023-01-29 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | mintchoco |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/themintchoco/holosongs |
도움말 페이지 URL | https://github.com/themintchoco/holosongs/issues |
지원되는 언어 | 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!" } |