UG Chords to Flats

Convert sharp (#) chords to flats (b) on ultimate-guitar.com, after a transposition for instance.

Что такое UG Chords to Flats?

UG Chords to Flats - это расширение Chrome, разработанное naaraanjaa, и его основная функция - "Convert sharp (#) chords to flats (b) on ultimate-guitar.com, after a transposition for instance.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения UG Chords to Flats

Скачайте файлы расширений UG Chords to Flats в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The current transposition feature on ultimate-guitar.com only produces sharp (#) chords, with no means to change them into flat (b) chords. It leads to chord names like 'D#' or 'A#' which are quite unusual and disturbing to many musicians, who would prefer 'Eb' and 'Bb' in these cases.

This extension addresses that need by providing a button that changes every sharp chord into the enharmonic flat chord.                    

Основная информация о расширении

Название UG Chords to Flats UG Chords to Flats
ID denhegbijdfbckdmjjmjbcfdhjogadlh
Официальный URL https://chrome.google.com/webstore/detail/ug-chords-to-flats/denhegbijdfbckdmjjmjbcfdhjogadlh
Описание Convert sharp (#) chords to flats (b) on ultimate-guitar.com, after a transposition for instance.
Размер файла 7.81 KB
Количество установок 27
Текущая Версия 1.0
Последнее Обновление 2018-08-31
Дата публикации 2018-08-31
Рейтинг 3.00/5 Всего 1 оценок
Разработчик naaraanjaa
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UG Chords to Flats",
    "version": "1.0",
    "description": "Convert sharp (#) chords to flats (b) on ultimate-guitar.com, after a transposition for instance.",
    "homepage_url": "https:\/\/github.com\/naaraanjaa\/UGChordstoFlats",
    "permissions": [
        "declarativeContent",
        "activeTab"
    ],
    "page_action": {
        "default_title": "Flat UG",
        "show_matches": [
            "*:\/\/tabs.ultimate-guitar.com\/*"
        ],
        "default_icon": "images\/bUG48.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/bUG16.png",
        "32": "images\/bUG32.png",
        "48": "images\/bUG48.png",
        "128": "images\/bUG128.png"
    }
}