Chord Parser

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

Qu'est-ce que Chord Parser ?

Chord Parser est une extension Chrome développée par andrewtae368, et sa fonction principale est "This extension will analyze a string of text for chords and return a set of chord charts".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Chord Parser

Téléchargez les fichiers d'extension Chord Parser 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

                        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!                    

Informations de Base sur l'Extension

Nom Chord Parser Chord Parser
ID bbpkjlgmmdpkdngmglgpfleidnfhecfi
URL Officiel https://chromewebstore.google.com/detail/chord-parser/bbpkjlgmmdpkdngmglgpfleidnfhecfi
Description This extension will analyze a string of text for chords and return a set of chord charts
Taille du Fichier 7.93 MB
Nombre d'Installations 401
Version Actuelle 0.7
Dernière Mise à Jour 2016-12-01
Date de Publication 2016-12-01
Évaluation 4.00/5 Total 3 Évaluations
Développeur andrewtae368
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}