Spotify Controller

Control Spotify Web Player from any window/tab.

什么是Spotify Controller?

Spotify Controller是由Joe Warren开发的Chrome扩展程序,该扩展的主要功能是“Control Spotify Web Player from any window/tab.”。

下载Spotify Controller扩展crx文件

下载Spotify Controller扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Spotify Controller Spotify Controller
ID celedfadbfmnehggekllhcbpgokjkknf
官方URL https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf
简介 Control Spotify Web Player from any window/tab.
文件大小 167 KB
安装次数 100
当前版本 1.0
更新时间 2014-02-19
上架时间 2014-02-19
评分 2.33/5 共3次评分
开发者 Joe Warren
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        }
    }
}