ugpiano
.
Was ist ugpiano?
ugpiano ist eine Chrome-Erweiterung, die von import antigrvty entwickelt wurde, und ihr Hauptmerkmal ist ".".
Erweiterungsscreenshots
ugpiano-Erweiterungs-CRX-Datei herunterladen
Laden Sie ugpiano-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | ugpiano |
ID | ghafgonoapifjmpfpcnkbjlihapolngi |
Offizielle URL | https://chromewebstore.google.com/detail/ugpiano/ghafgonoapifjmpfpcnkbjlihapolngi |
Beschreibung | . |
Dateigröße | 87.6 KB |
Installationsanzahl | 440 |
Aktuelle Version | 1.1 |
Letztes Update | 2020-01-06 |
Veröffentlichungsdatum | 2020-01-05 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | import antigrvty |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |