Apple Music Player

The ultimate companion app for Apple Music

What is Apple Music Player?

Apple Music Player is a Chrome extension developed by Felipe, and its main feature is "The ultimate companion app for Apple Music".

Extension Screenshots

screenshot
screenshot
screenshot

Download Apple Music Player Extension CRX File

Download Apple Music Player extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Apple Music Player Apple Music Player
ID jdclgfgmeifidmbplpnncekhcbppcgcc
Official URL https://chrome.google.com/webstore/detail/apple-music-player/jdclgfgmeifidmbplpnncekhcbppcgcc
Description The ultimate companion app for Apple Music
File Size 53.76 KB
Installation Count 6,793
Current Version 1.0
Last Updated 2022-01-10
Publish Date 2022-01-10
Rating 1.83/5 Total 6 Ratings
Developer Felipe
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}