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文件

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