Apple Music Player
The ultimate companion app for Apple Music
Apa itu Apple Music Player?
Apple Music Player adalah ekstensi Chrome yang dikembangkan oleh Felipe, dan fitur utamanya adalah "The ultimate companion app for Apple Music".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Apple Music Player
Unduh file ekstensi Apple Music Player dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | jdclgfgmeifidmbplpnncekhcbppcgcc |
URL Resmi | https://chrome.google.com/webstore/detail/apple-music-player/jdclgfgmeifidmbplpnncekhcbppcgcc |
Deskripsi | The ultimate companion app for Apple Music |
Ukuran File | 53.76 KB |
Jumlah Instalasi | 6,793 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2022-01-10 |
Tanggal Publikasi | 2022-01-10 |
Penilaian | 1.83/5 Total 6 Penilaian |
Pengembang | Felipe |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |