Apple Music Player

The ultimate companion app for Apple Music

Wat is Apple Music Player?

Apple Music Player is een Chrome-extensie ontwikkeld door Felipe, en de belangrijkste functie is "The ultimate companion app for Apple Music".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Apple Music Player

Download Apple Music Player-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Apple Music Player Apple Music Player
ID jdclgfgmeifidmbplpnncekhcbppcgcc
Officiële URL https://chrome.google.com/webstore/detail/apple-music-player/jdclgfgmeifidmbplpnncekhcbppcgcc
Beschrijving The ultimate companion app for Apple Music
Bestandsgrootte 53.76 KB
Aantal Installaties 6,793
Huidige Versie 1.0
Laatst Bijgewerkt 2022-01-10
Publicatiedatum 2022-01-10
Beoordeling 1.83/5 Totaal 6 Beoordelingen
Ontwikkelaar Felipe
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}