KANTAN Chord
This extension will converts various chord sites' song chords to its "degrees", also known as Nashville Numbers.
KANTAN Chord란 무엇입니까?
KANTAN Chord은(는) doco에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will converts various chord sites' song chords to its "degrees", also known as Nashville Numbers."입니다.
확장 프로그램 스크린샷
KANTAN Chord 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
• Overview KANTAN Chord is a browser extension that converts various chord sites' song chords to its "degrees", also known as Nashville Numbers. (Former name: InstaChordizer) • Compatible sites - ULTIMATE GUITAR TABS(https://www.ultimate-guitar.com/) - U-フレット(https://www.ufret.jp/) - 楽器.me(https://gakufu.gakki.me/) - J-Total Music(https://music.j-total.net/) - Guitarians.com(https://guitarians.com/) • How to use Open the chord web page. From the browser extensions, choose KANTAN Chord icon and it opens a pop-up window. Choose from tabs "C,F,G" (original) , "I,IV,V" (roman numerals), or "1,4,5" (degrees). - "C,F,G" (original) Displays the chords in its original form. Select radio buttons change keys. - "I,IV,V" (roman numerals) Displays the chords' degrees, in standard roman numerals format. - "1,4,5" (degrees) Displays the chords' degrees, in numbers. Different symbols follow the "KANTAN Chord" system, based on the Nashville Number System. For more details, please visit this page: https://instachord.com/instruction/icn/ • Key analyzation KANTAN Chord automatically analyzes the song's key and displays it in red text with a yellow background banner. When the key changes during a song, it will be displayed with additional banners. E.g. "Key:E(-3)" or "Key:Ab(+1)" Numbers such as (-3) and (+1) represent half steps. If your instrument can transpose, try adjusting to these numbers. If the key analyzation is wrong or is difficult to play, try adjusting the analyzation sensitivity. - Ignore +-5 key changes When changing to a dominant (+5 half steps) or subdominant key (-5 half steps) , chords used will be very similar to its original key. When this option is turned on, KANTAN Chord will ignore +-5 key changes and stay in its original key. • Displayed keys You can choose keys outside of the auto-analyzed key. - Song's analyzed key The song's auto-analyzed most likely key is outlined in a box. - Difficulty rank The numbers in front of the key (Eg. ①, ②, ③...) are difficulty ranks when playing on the InstaChord, from easiest to most difficult. Please use as reference, when the analyzed key if wrong or when the original key is difficult to play. ① and ② are in bold, and ① is underlined. - Changing they key (in C,F,G tab) When in the C,F,G tab, you can pick different keys to transpose to. - Changing they key (in I,IV,V or 1,4,5 tab) In I,IV,V or 1,4,5 tab, you can change the base key. Apply when the analyzed key is wrong, or when the original key is difficult to play. If other keys are greyed-out, turn off analyzation sensitivity. • Options for C,F,G tab - Disable automatic loading KANTAN Chord will not take effect until the icon is pressed. Use this option if there are compatibility issues with the site's features or other extensions. This option is only effective in the C,F,G tab. - Hide key display KANTAN Chord displays the song's key and displays it in red text with a yellow background banner. Use this option to hide the key display. This option is only effective in the C,F,G tab. • Options for I,IV,V tab - b → # All half tones are represented with # - IIm, VIm → ii, vi Minor chords are represented with lower case roman numerals. • Options for 1,4,5 tab - 3b/7b → 8/9 (5b/2b → 8/9 for minor key) For the InstaChord, commonly used chords are allocated on the 8 and 9 buttons. Using this option will make use of these buttons. - Use minor key Allows the use of minor key • Beginner mode By selecting 🥚LV.0 / 🐤LV.1 / 🐔LV.2 shown on the first line, you can adjust the difficulty of the chords. In 🥚LV.0 / 🐤LV.1 mode, chords will be simplified. In 🐔LV.2 mode, all chords will be in their original form. This mode isl not available when minor key is selected.
확장 프로그램 기본 정보
이름 | KANTAN Chord |
ID | ncdpcgdgemdklhocjgecijjjhaboopbp |
공식 URL | https://chromewebstore.google.com/detail/kantan-chord/ncdpcgdgemdklhocjgecijjjhaboopbp |
설명 | This extension will converts various chord sites' song chords to its "degrees", also known as Nashville Numbers. |
파일 크기 | 96.84 KB |
설치 횟수 | 3,183 |
현재 버전 | 2023.10.1.0 |
최근 업데이트 | 2023-10-04 |
출시 날짜 | 2021-09-15 |
평점 | 4.67/5 총 6 개의 평점 |
개발자 | doco |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "version": "2023.10.1.0", "description": "__MSG_appDescription__", "default_locale": "en", "icons": { "16": "icons\/IC-016.png", "48": "icons\/IC-048.png", "128": "icons\/IC-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.ufret.jp\/*", "*:\/\/gakufu.gakki.me\/*", "*:\/\/www.gakufu.gakki.me\/*", "*:\/\/music.j-total.net\/*", "*:\/\/tabs.ultimate-guitar.com\/*", "*:\/\/*.guitarians.com\/*", "*:\/\/guitarians.com\/*" ], "js": [ "content_scripts.js" ] } ], "browser_action": { "default_icon": { "16": "icons\/IC-016.png" }, "default_title": "__MSG_appName__", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ] } |