MusicPALS - Play And Learn Songs
Connect MIDI Instrument and start learning from YouTube Videos and Chord Websites
MusicPALS - Play And Learn Songs란 무엇입니까?
MusicPALS - Play And Learn Songs은(는) http://musicpals.rocks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Connect MIDI Instrument and start learning from YouTube Videos and Chord Websites"입니다.
확장 프로그램 스크린샷
MusicPALS - Play And Learn Songs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
MusicPALS is a google chrome extension which helps learn to play your favorite songs on chord websites, using MIDI instrument or your real instrument (via microphone audio input). Recommended Using MusicPALS with Zivix Jamstik+ and CME Xkey Air. If you want to learn a song from YouTube video or audio file, you can use Chordify. You can play along with the song playing non-stop, or practice on every chord. (via Play-along settings) Windows / macOS / Chrome OS are all supported. MIDI instrument are supported on Chrome OS as well. Besides connecting to MIDI instrument, you can also use computer keyboard to try playing. You can also play on your real instrument, and we will tell if you hit the correct chord. (Experimental feature). Following websites are supported (more sites will be added soon): - Chordify: https://chordify.net (Supports YouTube videos and uploaded files, different play-along modes are supported) - Ultimate Guitar (normal version): https://tabs.ultimate-guitar.com - Songsterr (old version Chord page): https://www.songsterr.com - E-Chords: http://www.e-chords.com - ufret.jp (Japanese): http://www.ufret.jp - J-total Music (Japanese): http://music.j-total.net - 91PU (Chinese): http://www.91pu.com.tw - GuitarPu (Chinese): http://www.gtp.tw Visit http://musicpals.rocks for the list of supported websites and MIDI instruments.
확장 프로그램 기본 정보
이름 | |
ID | aegdchkpegjbdifjggbajnddbgifanjl |
공식 URL | https://chrome.google.com/webstore/detail/musicpals-play-and-learn/aegdchkpegjbdifjggbajnddbgifanjl |
설명 | Connect MIDI Instrument and start learning from YouTube Videos and Chord Websites |
파일 크기 | 130 KB |
설치 횟수 | 1,067 |
현재 버전 | 1.1.18 |
최근 업데이트 | 2017-04-04 |
출시 날짜 | 2017-04-04 |
평점 | 4.60/5 총 5 개의 평점 |
개발자 | http://musicpals.rocks |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://musicpals.rocks/ |
도움말 페이지 URL | http://musicpals.rocks/ |
개인정보 보호 정책 페이지 URL | http://musicpals.rocks |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MusicPALS - Play And Learn Songs", "short_name": "MusicPALS", "description": "Connect MIDI Instrument and start learning from YouTube Videos and Chord Websites", "homepage_url": "http:\/\/musicpals.rocks", "version": "1.1.18", "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Play And Learn Song" }, "content_scripts": [ { "matches": [ "*:\/\/musicpals.rocks\/*", "*:\/\/chordify.net\/chords\/*", "*:\/\/tabs.ultimate-guitar.com\/*_crd.htm", "*:\/\/www.songsterr.com\/*-chords-*", "*:\/\/www.e-chords.com\/chords\/*", "*:\/\/www.ufret.jp\/song.php*", "*:\/\/music.j-total.net\/data\/*", "*:\/\/www.gtp.tw\/gtp_view.php*", "*:\/\/www.91pu.com.tw\/song\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle", "all_frames": false } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "manifest_version": 2 } |