Apple Music Player
The ultimate companion app for Apple Music
Apple Music Playerคืออะไร?
Apple Music Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Felipe และคุณลักษณะหลักของมันคือ "The ultimate companion app for Apple Music"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Apple Music Player
ดาวน์โหลดไฟล์ส่วนขยาย Apple Music Player ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Apple Music Player brings a stunning playback controls from right on your browser from anywhere on the web. Features: - Right click to Search Apple Music - Playback Controls Disclaimer: Apple Music is trademark of Apple Inc. The browser extension Apple Music Player, is in no way shape or form related to Apple Music or Apple Inc. It is an unofficial Extension which is developed and maintained independently by its author.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jdclgfgmeifidmbplpnncekhcbppcgcc |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/apple-music-player/jdclgfgmeifidmbplpnncekhcbppcgcc |
คำอธิบาย | The ultimate companion app for Apple Music |
ขนาดไฟล์ | 53.76 KB |
จำนวนการติดตั้ง | 6,793 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2022-01-10 |
วันที่เผยแพร่ | 2022-01-10 |
คะแนน | 1.83/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Felipe |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Apple Music Player", "version": "1.0", "manifest_version": 2, "description": "The ultimate companion app for Apple Music", "browser_action": { "default_popup": "popup.html", "default_icon": "icon.png" }, "icons": { "128": "icon.png" }, "permissions": [ "contextMenus", "https:\/\/music.apple.com\/*", "https:\/\/*.blobstore.apple.com\/*", "https:\/\/*.mzstatic.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/music.apple.com\/*" ], "js": [ "content.js" ] } ] } |