ugpiano
.
Qu'est-ce que ugpiano ?
ugpiano est une extension Chrome développée par import antigrvty, et sa fonction principale est ".".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ugpiano
Téléchargez les fichiers d'extension ugpiano au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | ugpiano |
ID | ghafgonoapifjmpfpcnkbjlihapolngi |
URL Officiel | https://chromewebstore.google.com/detail/ugpiano/ghafgonoapifjmpfpcnkbjlihapolngi |
Description | . |
Taille du Fichier | 87.6 KB |
Nombre d'Installations | 440 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2020-01-06 |
Date de Publication | 2020-01-05 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | import antigrvty |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |