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」です。
拡張機能のスクリーンショット
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 |
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" ] } } |