ugpiano
.
Wat is ugpiano?
ugpiano is een Chrome-extensie ontwikkeld door import antigrvty, en de belangrijkste functie is ".".
Extensie Screenshots
Download het CRX-bestand van de extensie ugpiano
Download ugpiano-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | ugpiano |
ID | ghafgonoapifjmpfpcnkbjlihapolngi |
Officiële URL | https://chromewebstore.google.com/detail/ugpiano/ghafgonoapifjmpfpcnkbjlihapolngi |
Beschrijving | . |
Bestandsgrootte | 87.6 KB |
Aantal Installaties | 440 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2020-01-06 |
Publicatiedatum | 2020-01-05 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | import antigrvty |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |