Control Spotify

Play and pause Spotify.

Wat is Control Spotify?

Control Spotify is een Chrome-extensie ontwikkeld door John Tantalo, en de belangrijkste functie is "Play and pause Spotify.".

Download het CRX-bestand van de extensie Control Spotify

Download Control Spotify-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This extension lets you play and pause Spotify from any tab or window.                    

Basisinformatie over de Extensie

Naam Control Spotify Control Spotify
ID ednibkmgpamaijdfjkdhdfgeklgfbllp
Officiële URL https://chrome.google.com/webstore/detail/control-spotify/ednibkmgpamaijdfjkdhdfgeklgfbllp
Beschrijving Play and pause Spotify.
Bestandsgrootte 11.05 KB
Aantal Installaties 14
Huidige Versie 1.0
Laatst Bijgewerkt 2013-05-27
Publicatiedatum 2013-05-27
Beoordeling 2.00/5 Totaal 4 Beoordelingen
Ontwikkelaar John Tantalo
Betalingswijze free
Extensiewebsite https://github.com/tantalor/control-spotify-chrome-ext
Help Pagina-URL https://github.com/tantalor/control-spotify-chrome-ext/issues
Ondersteunde Talen 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"
    }
}