Spotify Controller

Control Spotify Web Player from any window/tab.

Spotify Controller là gì?

Spotify Controller là một tiện ích mở rộng Chrome được phát triển bởi Joe Warren, và tính năng chính của nó là "Control Spotify Web Player from any window/tab.".

Tải xuống tệp CRX của tiện ích mở rộng Spotify Controller

Tải xuống các tệp mở rộng Spotify Controller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Spotify Controller Spotify Controller
ID celedfadbfmnehggekllhcbpgokjkknf
URL Chính Thức https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf
Mô tả Control Spotify Web Player from any window/tab.
Kích Thước Tệp 167 KB
Số Lần Cài Đặt 100
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-02-19
Ngày Phát Hành 2014-02-19
Đánh Giá 2.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Joe Warren
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}