Spotify Web Now Playing

Export Spotify Web “now playing” song to a local file

Qu'est-ce que Spotify Web Now Playing ?

Spotify Web Now Playing est une extension Chrome développée par Alexandre Macabies, et sa fonction principale est "Export Spotify Web “now playing” song to a local file".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Spotify Web Now Playing

Téléchargez les fichiers d'extension Spotify Web Now Playing au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Spotify Web Now Playing Spotify Web Now Playing
ID khdkihdjbcgglfdjpbamhoahejlddkdj
URL Officiel https://chromewebstore.google.com/detail/spotify-web-now-playing/khdkihdjbcgglfdjpbamhoahejlddkdj
Description Export Spotify Web “now playing” song to a local file
Taille du Fichier 17.12 KB
Nombre d'Installations 1,624
Version Actuelle 0.1.2
Dernière Mise à Jour 2021-11-26
Date de Publication 2021-01-18
Développeur Alexandre Macabies
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/zopieux/spotify-now-playing-chrome-extension
URL de la Page d'Aide https://github.com/zopieux/spotify-now-playing-chrome-extension
Langues Prises en Charge 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\/*"
    ]
}