ugpiano

.

ugpiano là gì?

ugpiano là một tiện ích mở rộng Chrome được phát triển bởi import antigrvty, và tính năng chính của nó là ".".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ugpiano

Tải xuống các tệp mở rộng ugpiano dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Show piano chords in ultimate guitar!
Ultimate-guitar is a great resource for chords to practically any song you could want to learn.  They even show guitar chord diagrams for those who are not sure what the chord shape is.  Unfortunately, they do not provide piano chord diagrams as well.  That's where ugpiano can help.  It will show the piano chord diagrams while it is activated!

Thanks to https://www.scales-chords.com/ for making their API available.  I am retrieving the piano chord diagrams through them!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ugpiano ugpiano
ID ghafgonoapifjmpfpcnkbjlihapolngi
URL Chính Thức https://chromewebstore.google.com/detail/ugpiano/ghafgonoapifjmpfpcnkbjlihapolngi
Mô tả .
Kích Thước Tệp 87.6 KB
Số Lần Cài Đặt 440
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2020-01-06
Ngày Phát Hành 2020-01-05
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển import antigrvty
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ugpiano",
    "description": ".",
    "version": "1.1",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "*:\/\/*.ultimate-guitar.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_title": "UGPiano"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/ugpiano16.png",
        "48": "icons\/ugpiano48.png",
        "128": "icons\/ugpiano128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ultimate-guitar.com\/*"
            ],
            "js": [
                "scripts\/showchords.js"
            ]
        }
    ]
}