Apple Music Player
The ultimate companion app for Apple Music
Vad är Apple Music Player?
Apple Music Player är en Chrome-tillägg utvecklad av Felipe, och dess huvudfunktion är "The ultimate companion app for Apple Music".
Tilläggsskärmbilder
Ladda ner Apple Music Player-förlängningens CRX-fil
Ladda ner Apple Music Player-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | jdclgfgmeifidmbplpnncekhcbppcgcc |
Officiell webbadress | https://chrome.google.com/webstore/detail/apple-music-player/jdclgfgmeifidmbplpnncekhcbppcgcc |
Beskrivning | The ultimate companion app for Apple Music |
Filstorlek | 53.76 KB |
Antal Installationer | 6,793 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2022-01-10 |
Publiceringsdatum | 2022-01-10 |
Betyg | 1.83/5 Totalt 6 Betyg |
Utvecklare | Felipe |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |