Chord Parser
This extension will analyze a string of text for chords and return a set of chord charts
Chord Parser là gì?
Chord Parser là một tiện ích mở rộng Chrome được phát triển bởi andrewtae368, và tính năng chính của nó là "This extension will analyze a string of text for chords and return a set of chord charts".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Chord Parser
Tải xuống các tệp mở rộng Chord Parser dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Chord Parser |
ID | bbpkjlgmmdpkdngmglgpfleidnfhecfi |
URL Chính Thức | https://chromewebstore.google.com/detail/chord-parser/bbpkjlgmmdpkdngmglgpfleidnfhecfi |
Mô tả | This extension will analyze a string of text for chords and return a set of chord charts |
Kích Thước Tệp | 7.93 MB |
Số Lần Cài Đặt | 401 |
Phiên Bản Hiện Tại | 0.7 |
Cập Nhật Lần Cuối | 2016-12-01 |
Ngày Phát Hành | 2016-12-01 |
Đánh Giá | 4.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | andrewtae368 |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |