Chord Parser

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

Chord Parser란 무엇입니까?

Chord Parser은(는) andrewtae368에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will analyze a string of text for chords and return a set of chord charts"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Chord Parser 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        ]
    }
}