Apple Music Player
The ultimate companion app for Apple Music
Apple Music Player क्या है?
Apple Music Player Felipe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The ultimate companion app for Apple Music"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Apple Music Player एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } ] } |