Apple Music Player

The ultimate companion app for Apple Music

Apple Music Player란 무엇입니까?

Apple Music Player은(는) Felipe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The ultimate companion app for Apple Music"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Apple Music Player 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Apple Music Player Apple Music Player
ID jdclgfgmeifidmbplpnncekhcbppcgcc
공식 URL https://chrome.google.com/webstore/detail/apple-music-player/jdclgfgmeifidmbplpnncekhcbppcgcc
설명 The ultimate companion app for Apple Music
파일 크기 53.76 KB
설치 횟수 6,793
현재 버전 1.0
최근 업데이트 2022-01-10
출시 날짜 2022-01-10
평점 1.83/5 총 6 개의 평점
개발자 Felipe
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
            ]
        }
    ]
}