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 |
Eメール | [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" ] } ] } |