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文件
下载KANTAN Chord扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
• 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" ] } |