Chord Parser

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

Chord Parserคืออะไร?

Chord Parser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย andrewtae368 และคุณลักษณะหลักของมันคือ "This extension will analyze a string of text for chords and return a set of chord charts"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chord Parser

ดาวน์โหลดไฟล์ส่วนขยาย Chord Parser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        ]
    }
}