ugpiano
.
ugpiano란 무엇입니까?
ugpiano은(는) import antigrvty에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "."입니다.
확장 프로그램 스크린샷
ugpiano 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Show piano chords in ultimate guitar! Ultimate-guitar is a great resource for chords to practically any song you could want to learn. They even show guitar chord diagrams for those who are not sure what the chord shape is. Unfortunately, they do not provide piano chord diagrams as well. That's where ugpiano can help. It will show the piano chord diagrams while it is activated! Thanks to https://www.scales-chords.com/ for making their API available. I am retrieving the piano chord diagrams through them!
확장 프로그램 기본 정보
이름 | ugpiano |
ID | ghafgonoapifjmpfpcnkbjlihapolngi |
공식 URL | https://chromewebstore.google.com/detail/ugpiano/ghafgonoapifjmpfpcnkbjlihapolngi |
설명 | . |
파일 크기 | 87.6 KB |
설치 횟수 | 440 |
현재 버전 | 1.1 |
최근 업데이트 | 2020-01-06 |
출시 날짜 | 2020-01-05 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | import antigrvty |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ugpiano", "description": ".", "version": "1.1", "manifest_version": 2, "permissions": [ "activeTab", "*:\/\/*.ultimate-guitar.com\/*", "storage" ], "browser_action": { "default_title": "UGPiano" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "icons": { "16": "icons\/ugpiano16.png", "48": "icons\/ugpiano48.png", "128": "icons\/ugpiano128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.ultimate-guitar.com\/*" ], "js": [ "scripts\/showchords.js" ] } ] } |