Chord Parser

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

Chord Parser क्या है?

Chord Parser andrewtae368 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will analyze a string of text for chords and return a set of chord charts"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chord Parser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम Chord Parser Chord Parser
ID bbpkjlgmmdpkdngmglgpfleidnfhecfi
आधिकारिक URL https://chromewebstore.google.com/detail/chord-parser/bbpkjlgmmdpkdngmglgpfleidnfhecfi
विवरण This extension will analyze a string of text for chords and return a set of chord charts
फ़ाइल का आकार 7.93 MB
स्थापना संख्या 401
वर्तमान संस्करण 0.7
अंतिम अपडेट 2016-12-01
प्रकाशन तिथि 2016-12-01
रेटिंग 4.00/5 कुल 3 रेटिंग्स
डेवलपर andrewtae368
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
        ]
    }
}