Spotify Controller

Control Spotify Web Player from any window/tab.

Apa itu Spotify Controller?

Spotify Controller adalah ekstensi Chrome yang dikembangkan oleh Joe Warren, dan fitur utamanya adalah "Control Spotify Web Player from any window/tab.".

Unduh Berkas CRX Ekstensi Spotify Controller

Unduh file ekstensi Spotify Controller 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

                        Control the web Spotify Player(https://play.spotify.com) from any Chrome window/tab.

Play/pause: Ctrl + Shift + P
Next song: Ctrl + Shift + N
Previous song: Ctrl + Shift + B                    

Informasi Dasar Ekstensi

Nama Spotify Controller Spotify Controller
ID celedfadbfmnehggekllhcbpgokjkknf
URL Resmi https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf
Deskripsi Control Spotify Web Player from any window/tab.
Ukuran File 167 KB
Jumlah Instalasi 100
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-02-19
Tanggal Publikasi 2014-02-19
Penilaian 2.33/5 Total 3 Penilaian
Pengembang Joe Warren
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Controller",
    "description": "Control Spotify Web Player from any window\/tab.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "commands": {
        "toggle-pause": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "MacCtrl+Shift+P"
            },
            "description": "Toggle pause and play"
        },
        "toggle-next": {
            "suggested_key": {
                "default": "Ctrl+Shift+N",
                "mac": "MacCtrl+Shift+N"
            },
            "description": "Play the next song"
        },
        "toggle-previous": {
            "suggested_key": {
                "default": "Ctrl+Shift+B",
                "mac": "MacCtrl+Shift+B"
            },
            "description": "Play the previous song"
        }
    }
}