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".

Снимки экрана расширения

screenshot

Скачать файл 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 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\/*"
    ]
}