Control Spotify

Play and pause Spotify.

Apa itu Control Spotify?

Control Spotify adalah ekstensi Chrome yang dikembangkan oleh John Tantalo, dan fitur utamanya adalah "Play and pause Spotify.".

Unduh Berkas CRX Ekstensi Control Spotify

Unduh file ekstensi Control Spotify dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Control Spotify Control Spotify
ID ednibkmgpamaijdfjkdhdfgeklgfbllp
URL Resmi https://chrome.google.com/webstore/detail/control-spotify/ednibkmgpamaijdfjkdhdfgeklgfbllp
Deskripsi Play and pause Spotify.
Ukuran File 11.05 KB
Jumlah Instalasi 14
Versi Saat Ini 1.0
Terakhir Diperbarui 2013-05-27
Tanggal Publikasi 2013-05-27
Penilaian 2.00/5 Total 4 Penilaian
Pengembang John Tantalo
Tipe Pembayaran free
Situs Ekstensi https://github.com/tantalor/control-spotify-chrome-ext
URL Halaman Bantuan https://github.com/tantalor/control-spotify-chrome-ext/issues
Bahasa yang Didukung 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"
    }
}