Apple Music Player

The ultimate companion app for Apple Music

Hvad er Apple Music Player?

Apple Music Player er en Chrome-udvidelse udviklet af Felipe, og dens hovedfunktion er "The ultimate companion app for Apple Music".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Apple Music Player-udvidelses-CRX-fil

Download Apple Music Player-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Apple Music Player Apple Music Player
ID jdclgfgmeifidmbplpnncekhcbppcgcc
Officiel URL https://chrome.google.com/webstore/detail/apple-music-player/jdclgfgmeifidmbplpnncekhcbppcgcc
Beskrivelse The ultimate companion app for Apple Music
Filstørrelse 53.76 KB
Antal Installationer 6,793
Nuværende Version 1.0
Senest Opdateret 2022-01-10
Udgivelsesdato 2022-01-10
Bedømmelse 1.83/5 Samlet 6 Bedømmelser
Udvikler Felipe
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}