Now Playing Notifier for Spotify [unofficial]
Notify the currently playing song on Spotify. This is an unofficial extension.
Now Playing Notifier for Spotify [unofficial] là gì?
Now Playing Notifier for Spotify [unofficial] là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Notify the currently playing song on Spotify. This is an unofficial extension.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Now Playing Notifier for Spotify [unofficial]
Tải xuống các tệp mở rộng Now Playing Notifier for Spotify [unofficial] dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Notify the currently playing song on Spotify (open.spotify.com). **How to Use** 1. Open Spotify on Google Chrome. Then this extension will automatically run. 2. Play some music. 3. A silent notification will apear every time the music switches. **Attention** This extension just fetch song titles from HTML on Spotify, so it doesn't work when Spotify isn't opened on Chrome.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Now Playing Notifier for Spotify [unofficial] |
ID | bieocankgankjnlnipolmaecmonaboja |
URL Chính Thức | https://chromewebstore.google.com/detail/now-playing-notifier-for/bieocankgankjnlnipolmaecmonaboja |
Mô tả | Notify the currently playing song on Spotify. This is an unofficial extension. |
Kích Thước Tệp | 13.54 KB |
Số Lần Cài Đặt | 128 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2020-03-22 |
Ngày Phát Hành | 2020-03-22 |
Đánh Giá | 1.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Now Playing Notifier for Spotify [unofficial]", "version": "0.0.1", "manifest_version": 2, "description": "Notify the currently playing song on Spotify. This is an unofficial extension.", "icons": { "16": "icon\/16x16.png", "48": "icon\/48x48.png", "128": "icon\/128x128.png" }, "permissions": [ "notifications" ], "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "js\/pagescript.js" ], "run_at": "document_start" } ] } |