Spotify Web Now Playing
Export Spotify Web “now playing” song to a local file
Spotify Web Now Playingとは何ですか?
Spotify Web Now PlayingはAlexandre Macabiesによって開発されたChromeの拡張機能で、その主な機能は「Export Spotify Web “now playing” song to a local file」です。
拡張機能のスクリーンショット
Spotify Web Now Playing拡張機能のCRXファイルをダウンロード
Spotify Web Now Playing拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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\/*" ] } |