KANTAN Chord

This extension will converts various chord sites' song chords to its "degrees", also known as Nashville Numbers.

Vad är KANTAN Chord?

KANTAN Chord är en Chrome-tillägg utvecklad av doco, och dess huvudfunktion är "This extension will converts various chord sites' song chords to its "degrees", also known as Nashville Numbers.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner KANTAN Chord-förlängningens CRX-fil

Ladda ner KANTAN Chord-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        • 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.                    

Grundläggande Information om Tillägg

Namn KANTAN Chord KANTAN Chord
ID ncdpcgdgemdklhocjgecijjjhaboopbp
Officiell webbadress https://chromewebstore.google.com/detail/kantan-chord/ncdpcgdgemdklhocjgecijjjhaboopbp
Beskrivning This extension will converts various chord sites' song chords to its "degrees", also known as Nashville Numbers.
Filstorlek 96.84 KB
Antal Installationer 3,183
Aktuell Version 2023.10.1.0
Senast Uppdaterad 2023-10-04
Publiceringsdatum 2021-09-15
Betyg 4.67/5 Totalt 6 Betyg
Utvecklare doco
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}