Apple Music Player

The ultimate companion app for Apple Music

Apple Music Player là gì?

Apple Music Player là một tiện ích mở rộng Chrome được phát triển bởi Felipe, và tính năng chính của nó là "The ultimate companion app for Apple Music".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Apple Music Player

Tải xuống các tệp mở rộng Apple Music Player dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Apple Music Player Apple Music Player
ID jdclgfgmeifidmbplpnncekhcbppcgcc
URL Chính Thức https://chrome.google.com/webstore/detail/apple-music-player/jdclgfgmeifidmbplpnncekhcbppcgcc
Mô tả The ultimate companion app for Apple Music
Kích Thước Tệp 53.76 KB
Số Lần Cài Đặt 6,793
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-01-10
Ngày Phát Hành 2022-01-10
Đánh Giá 1.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Felipe
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}