Spotify Web Now Playing
Export Spotify Web “now playing” song to a local file
Spotify Web Now Playingคืออะไร?
Spotify Web Now Playing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alexandre Macabies และคุณลักษณะหลักของมันคือ "Export Spotify Web “now playing” song to a local file"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spotify Web Now Playing
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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\/*" ] } |