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 |
官方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" ] } ] } |