Music Score Downloader
This extension allows you to download sheets, audio and midi files
Music Score Downloaderคืออะไร?
Music Score Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย inguin และคุณลักษณะหลักของมันคือ "This extension allows you to download sheets, audio and midi files"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Music Score Downloader
ดาวน์โหลดไฟล์ส่วนขยาย Music Score Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you to download: ➡️ audio - mp3 ➡️ music sheets - pdf ➡️ midi - mid ⚠️ Doesn't work on official scores ⚠️ Please use it for study purposes only 🙂
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Music Score Downloader |
ID | jhogldboghgffknljgnomjkcfbapogdf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf |
คำอธิบาย | This extension allows you to download sheets, audio and midi files |
ขนาดไฟล์ | 809 KB |
จำนวนการติดตั้ง | 10,061 |
เวอร์ชันปัจจุบัน | 0.5.4 |
อัปเดตครั้งล่าสุด | 2024-03-05 |
วันที่เผยแพร่ | 2023-01-10 |
คะแนน | 4.80/5 รวมทั้งหมด 30 คะแนน |
ผู้พัฒนา | inguin |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/ingui-n/musescore-downloader |
URL หน้าช่วยเหลือ | https://github.com/ingui-n/musescore-downloader/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "This extension allows you to download sheets, audio and midi files", "version": "0.5.4", "manifest_version": 3, "name": "Music Score Downloader", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "webRequest" ], "host_permissions": [ "https:\/\/musescore.com\/*", "https:\/\/s3.ultimate-guitar.com\/musescore.scoredata\/g\/*" ], "action": { "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/musescore.com\/*" ], "run_at": "document_start", "js": [ "content.js" ] } ] } |