Control Spotify

Play and pause Spotify.

Hvad er Control Spotify?

Control Spotify er en Chrome-udvidelse udviklet af John Tantalo, og dens hovedfunktion er "Play and pause Spotify.".

Download Control Spotify-udvidelses-CRX-fil

Download Control Spotify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Control Spotify Control Spotify
ID ednibkmgpamaijdfjkdhdfgeklgfbllp
Officiel URL https://chrome.google.com/webstore/detail/control-spotify/ednibkmgpamaijdfjkdhdfgeklgfbllp
Beskrivelse Play and pause Spotify.
Filstørrelse 11.05 KB
Antal Installationer 14
Nuværende Version 1.0
Senest Opdateret 2013-05-27
Udgivelsesdato 2013-05-27
Bedømmelse 2.00/5 Samlet 4 Bedømmelser
Udvikler John Tantalo
Betalingsmetode free
Udvidelseswebsted https://github.com/tantalor/control-spotify-chrome-ext
Hjælpeside-URL https://github.com/tantalor/control-spotify-chrome-ext/issues
Understøttede Sprog 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"
    }
}