ugpiano
.
ugpianoคืออะไร?
ugpiano เป็นส่วนขยายของ Chrome ที่พัฒนาโดย import antigrvty และคุณลักษณะหลักของมันคือ "."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ugpiano
ดาวน์โหลดไฟล์ส่วนขยาย ugpiano ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Show piano chords in ultimate guitar! Ultimate-guitar is a great resource for chords to practically any song you could want to learn. They even show guitar chord diagrams for those who are not sure what the chord shape is. Unfortunately, they do not provide piano chord diagrams as well. That's where ugpiano can help. It will show the piano chord diagrams while it is activated! Thanks to https://www.scales-chords.com/ for making their API available. I am retrieving the piano chord diagrams through them!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ugpiano |
ID | ghafgonoapifjmpfpcnkbjlihapolngi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ugpiano/ghafgonoapifjmpfpcnkbjlihapolngi |
คำอธิบาย | . |
ขนาดไฟล์ | 87.6 KB |
จำนวนการติดตั้ง | 440 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2020-01-06 |
วันที่เผยแพร่ | 2020-01-05 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | import antigrvty |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ugpiano", "description": ".", "version": "1.1", "manifest_version": 2, "permissions": [ "activeTab", "*:\/\/*.ultimate-guitar.com\/*", "storage" ], "browser_action": { "default_title": "UGPiano" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "icons": { "16": "icons\/ugpiano16.png", "48": "icons\/ugpiano48.png", "128": "icons\/ugpiano128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.ultimate-guitar.com\/*" ], "js": [ "scripts\/showchords.js" ] } ] } |