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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*" ] } |