Play Along
Extension for playing guitar along to YouTube videos
Play Along란 무엇입니까?
Play Along은(는) Jairam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for playing guitar along to YouTube videos"입니다.
확장 프로그램 스크린샷
Play Along 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Play Along is a small, compact extension that is activated when you listen to music on YouTube. Once the YouTube video is loaded, Play Along will search Ultimate Guitar for the corresponding chords and tabs. If no match is found, clicking on the "Chords" and "Tabs" buttons will open up the search page in Ultimate Guitar. In addition to Ultimate Guitar, users also have the option of navigating to the Chordify page. How to use: 1. Open Youtube.com 2. Search for a song and start playing the video 3. While on the Youtube page, click on the "Play Along" Chrome extension icon. You should now see options to lookup tabs and chords
확장 프로그램 기본 정보
이름 | Play Along |
ID | idkkhpjhgldjbghbiimlbiomfemcedko |
공식 URL | https://chromewebstore.google.com/detail/play-along/idkkhpjhgldjbghbiimlbiomfemcedko |
설명 | Extension for playing guitar along to YouTube videos |
파일 크기 | 20.28 KB |
설치 횟수 | 480 |
현재 버전 | 1.3 |
최근 업데이트 | 2023-07-17 |
출시 날짜 | 2020-01-07 |
평점 | 3.40/5 총 5 개의 평점 |
개발자 | Jairam |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://jairampatel.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Play Along", "short_name": "Play Along", "version": "1.3", "manifest_version": 2, "description": "Extension for playing guitar along to YouTube videos", "permissions": [ "activeTab", "declarativeContent", "storage", "tabs", "webNavigation", "https:\/\/www.ultimate-guitar.com\/" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": true, "runs_at": "document_idle", "js": [ "js\/process-video.js" ], "css": [ "css\/styles.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "page_action": { "default_popup": "popup.html", "default_title": "Play along", "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } } |