Apple Music Player
The ultimate companion app for Apple Music
Co to jest Apple Music Player?
Apple Music Player to rozszerzenie Chrome opracowane przez Felipe, a jego główną funkcją jest „The ultimate companion app for Apple Music”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Apple Music Player
Pobierz pliki rozszerzeń Apple Music Player w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | jdclgfgmeifidmbplpnncekhcbppcgcc |
Oficjalny URL | https://chrome.google.com/webstore/detail/apple-music-player/jdclgfgmeifidmbplpnncekhcbppcgcc |
Opis | The ultimate companion app for Apple Music |
Rozmiar pliku | 53.76 KB |
Liczba instalacji | 6,793 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2022-01-10 |
Data Publikacji | 2022-01-10 |
Ocena | 1.83/5 Łącznie 6 Oceny |
Deweloper | Felipe |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |