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”。

扩展截图

screenshot

下载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 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\/*"
    ]
}