Chord Parser

This extension will analyze a string of text for chords and return a set of chord charts

Cos'è Chord Parser?

Chord Parser è un'estensione di Chrome sviluppata da andrewtae368, e la sua funzione principale è "This extension will analyze a string of text for chords and return a set of chord charts".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Chord Parser

Scarica i file di estensione Chord Parser in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Chord Parser Chord Parser
ID bbpkjlgmmdpkdngmglgpfleidnfhecfi
URL Ufficiale https://chromewebstore.google.com/detail/chord-parser/bbpkjlgmmdpkdngmglgpfleidnfhecfi
Descrizione This extension will analyze a string of text for chords and return a set of chord charts
Dimensione del File 7.93 MB
Conteggio Installazioni 401
Versione Corrente 0.7
Ultimo Aggiornamento 2016-12-01
Data di Pubblicazione 2016-12-01
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore andrewtae368
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}