Chord Transposer

An extension that allows you to transpose chords.

什么是Chord Transposer?

Chord Transposer是由Domenico Gemoli开发的Chrome扩展程序,该扩展的主要功能是“An extension that allows you to transpose chords.”。

扩展截图

screenshot

下载Chord Transposer扩展crx文件

下载Chord Transposer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A chrome extension that allows you to transpose chords on any website.

Transposing is the act of converting a song into a different key. You might want to do it to find a key that works better with your voice, or simply to choose a version of the song that has chords that are easier for you to play.

Currently, it only works on websites with Italian chords (Do, Re, Mi etc..) and converts them into English chords so that transposition is possible. Inspired by the "transpose" functionality on the Ultimate Guitar website.

Tested on these websites:

http://www.mbutozone.it
http://psicoaccordi.blogspot.it

How to use:
- Visit a web page that contains chords
- Wait for the page to load and click on the extension icon in the top right of the browser
- Click 'select chords' and then click on the lyrics on the web page
- Click on the extension icon and click 'enable'. This will convert the chords to links
- Click on the extension icon and click '+' or '-' to transpose
- Click on a converted chord to remove (in case part of the lyrics were converted by mistake)                    

扩展基本信息

名称 Chord Transposer Chord Transposer
ID paieadgemondfnehhihefldfgaaeofne
官方URL https://chromewebstore.google.com/detail/chord-transposer/paieadgemondfnehhihefldfgaaeofne
简介 An extension that allows you to transpose chords.
文件大小 67.67 KB
安装次数 1,490
当前版本 1.1.0
更新时间 2023-12-06
上架时间 2017-01-04
评分 4.50/5 共2次评分
开发者 Domenico Gemoli
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/aberonni/Chord-Transposer-Extension
帮助页面URL https://github.com/aberonni/Chord-Transposer-Extension/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chord Transposer",
    "version": "1.1.0",
    "description": "An extension that allows you to transpose chords.",
    "action": {
        "default_title": "Chord Transposer",
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "author": "Domenico Gemoli",
    "background": {
        "service_worker": "scripts\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "styles\/content.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "homepage_url": "https:\/\/github.com\/aberonni\/Chord-Transposer-Extension",
    "offline_enabled": true
}