Spotify Web Now Playing
Export Spotify Web “now playing” song to a local file
Spotify Web Now Playing क्या है?
Spotify Web Now Playing Alexandre Macabies द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export Spotify Web “now playing” song to a local file"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Spotify Web Now Playing एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension keeps a JSON file in sync with the currently playing song on Spotify Web (open.spotify.com). This is useful to make use of that information locally, for instance displaying the title and artist in the task bar, or whatever else you fancy. The JSON file includes: the artist, the title and the cover art URL. Please refer to https://github.com/zopieux/spotify-now-playing-chrome-extension for more technical details and integration examples. WHAT'S NEW? * v0.1.2: fixes a bug that prevented the extension from working * v0.1.1: the startup routine is now more robust to slow page loads.
एक्सटेंशन की मूल जानकारी
नाम | Spotify Web Now Playing |
ID | khdkihdjbcgglfdjpbamhoahejlddkdj |
आधिकारिक URL | https://chromewebstore.google.com/detail/spotify-web-now-playing/khdkihdjbcgglfdjpbamhoahejlddkdj |
विवरण | Export Spotify Web “now playing” song to a local file |
फ़ाइल का आकार | 17.12 KB |
स्थापना संख्या | 1,624 |
वर्तमान संस्करण | 0.1.2 |
अंतिम अपडेट | 2021-11-26 |
प्रकाशन तिथि | 2021-01-18 |
डेवलपर | Alexandre Macabies |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/zopieux/spotify-now-playing-chrome-extension |
सहायता पृष्ठ URL | https://github.com/zopieux/spotify-now-playing-chrome-extension |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify Web Now Playing", "description": "Export Spotify Web \u201cnow playing\u201d song to a local file", "version": "0.1.2", "manifest_version": 2, "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "incognito": "split", "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "https:\/\/open.spotify.com\/*" ] } |