Apple Music Player
The ultimate companion app for Apple Music
Was ist Apple Music Player?
Apple Music Player ist eine Chrome-Erweiterung, die von Felipe entwickelt wurde, und ihr Hauptmerkmal ist "The ultimate companion app for Apple Music".
Erweiterungsscreenshots
Apple Music Player-Erweiterungs-CRX-Datei herunterladen
Laden Sie Apple Music Player-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | jdclgfgmeifidmbplpnncekhcbppcgcc |
Offizielle URL | https://chrome.google.com/webstore/detail/apple-music-player/jdclgfgmeifidmbplpnncekhcbppcgcc |
Beschreibung | The ultimate companion app for Apple Music |
Dateigröße | 53.76 KB |
Installationsanzahl | 6,793 |
Aktuelle Version | 1.0 |
Letztes Update | 2022-01-10 |
Veröffentlichungsdatum | 2022-01-10 |
Bewertung | 1.83/5 Insgesamt 6 Bewertungen |
Entwickler | Felipe |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |