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”。
擴展截圖
下載Apple Music Player擴展crx文件
下載Apple Music Player擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | jdclgfgmeifidmbplpnncekhcbppcgcc |
官方網址 | 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" ] } ] } |