Now Playing Notifier for Spotify [unofficial]
Notify the currently playing song on Spotify. This is an unofficial extension.
什么是Now Playing Notifier for Spotify [unofficial]?
Now Playing Notifier for Spotify [unofficial]是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Notify the currently playing song on Spotify. This is an unofficial extension.”。
扩展截图
下载Now Playing Notifier for Spotify [unofficial]扩展crx文件
下载Now Playing Notifier for Spotify [unofficial]扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Now Playing Notifier for Spotify [unofficial] |
ID | bieocankgankjnlnipolmaecmonaboja |
官方URL | https://chromewebstore.google.com/detail/now-playing-notifier-for/bieocankgankjnlnipolmaecmonaboja |
简介 | Notify the currently playing song on Spotify. This is an unofficial extension. |
文件大小 | 13.54 KB |
安装次数 | 128 |
当前版本 | 0.0.1 |
更新时间 | 2020-03-22 |
上架时间 | 2020-03-22 |
评分 | 1.00/5 共3次评分 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | 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" } ] } |