Youtube Music Party
Youtube Music Party
Youtube Music Party란 무엇입니까?
Youtube Music Party은(는) Fishuke에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Youtube Music Party"입니다.
확장 프로그램 스크린샷
Youtube Music Party 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Steps to follow: 1- Install the extension. 2- Refresh youtube music and play a music. 3- Join a room. 4- Follow this steps in the other clients. 5- Enjoy. I love listening to music so much. And i wanted to listen music with my friends, but Youtube music doesn't have feature so. Then i made this plugin to make listening party with my friends. I hope you will enjoy while using it. Feel free to give feedbacks. We love open source: https://github.com/fishuke/ytmparty/
확장 프로그램 기본 정보
이름 | |
ID | cdmmbghbolflmmfecknfkjcflnadaocg |
공식 URL | https://chrome.google.com/webstore/detail/youtube-music-party/cdmmbghbolflmmfecknfkjcflnadaocg |
설명 | Youtube Music Party |
파일 크기 | 96.49 KB |
설치 횟수 | 2,108 |
현재 버전 | 2.0.1 |
최근 업데이트 | 2022-06-24 |
출시 날짜 | 2021-01-13 |
평점 | 3.76/5 총 17 개의 평점 |
개발자 | Fishuke |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://discord.gg/uaMtBWYAFc |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Music Party", "description": "Youtube Music Party", "version": "2.0.1", "action": { "default_icon": "icon-128.png", "default_popup": "popup.html" }, "background": { "service_worker": "js\/serviceWorker.js" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "all_frames": true, "js": [ "js\/contentScript.js" ], "matches": [ "https:\/\/music.youtube.com\/*" ], "run_at": "document_end" } ], "permissions": [ "activeTab" ], "host_permissions": [ "https:\/\/music.youtube.com\/*" ], "web_accessible_resources": [ { "resources": [ "js\/inject.js" ], "matches": [ "https:\/\/music.youtube.com\/*" ] } ] } |