Chord Parser
This extension will analyze a string of text for chords and return a set of chord charts
Co to jest Chord Parser?
Chord Parser to rozszerzenie Chrome opracowane przez andrewtae368, a jego główną funkcją jest „This extension will analyze a string of text for chords and return a set of chord charts”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Chord Parser
Pobierz pliki rozszerzeń Chord Parser w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Chord Parser is the ultimate tool for guitarists who are learning to read chord charts. Simply enter a set of chord names or copy and paste a whole text file with chord names in it. Chord Parser will pull out chord names and return tablature for each chord along with the spelling of each chord. This allows you to see every chord in the song that you're learning without leaving the page to find every chord individually. Save time and learn your songs quickly!
Podstawowe informacje o rozszerzeniu
Nazwa | Chord Parser |
ID | bbpkjlgmmdpkdngmglgpfleidnfhecfi |
Oficjalny URL | https://chromewebstore.google.com/detail/chord-parser/bbpkjlgmmdpkdngmglgpfleidnfhecfi |
Opis | This extension will analyze a string of text for chords and return a set of chord charts |
Rozmiar pliku | 7.93 MB |
Liczba instalacji | 401 |
Aktualna Wersja | 0.7 |
Ostatnia Aktualizacja | 2016-12-01 |
Data Publikacji | 2016-12-01 |
Ocena | 4.00/5 Łącznie 3 Oceny |
Deweloper | andrewtae368 |
Typ Płatności | free |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chord Parser", "description": "This extension will analyze a string of text for chords and return a set of chord charts", "version": "0.7", "browser_action": { "default_icon": "favicon48.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "icons": { "16": "favicon16.png", "48": "favicon48.png", "128": "favicon128.png" }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'", "commands": { "open-window": { "suggested_key": { "default": "Ctrl+Shift+Comma", "mac": "Command+Shift+Comma" }, "description": "Open Window" } }, "background": { "scripts": [ ".\/assets\/javascript\/background.js" ] } } |