Control Spotify

Play and pause Spotify.

Qu'est-ce que Control Spotify ?

Control Spotify est une extension Chrome développée par John Tantalo, et sa fonction principale est "Play and pause Spotify.".

Télécharger le fichier CRX de l'extension Control Spotify

Téléchargez les fichiers d'extension Control Spotify 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 lets you play and pause Spotify from any tab or window.                    

Informations de Base sur l'Extension

Nom Control Spotify Control Spotify
ID ednibkmgpamaijdfjkdhdfgeklgfbllp
URL Officiel https://chrome.google.com/webstore/detail/control-spotify/ednibkmgpamaijdfjkdhdfgeklgfbllp
Description Play and pause Spotify.
Taille du Fichier 11.05 KB
Nombre d'Installations 14
Version Actuelle 1.0
Dernière Mise à Jour 2013-05-27
Date de Publication 2013-05-27
Évaluation 2.00/5 Total 4 Évaluations
Développeur John Tantalo
Type de Paiement free
Site Web de l'Extension https://github.com/tantalor/control-spotify-chrome-ext
URL de la Page d'Aide https://github.com/tantalor/control-spotify-chrome-ext/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Control Spotify",
    "description": "Play and pause Spotify.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "inject.js"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "pause.png"
    }
}