Control Spotify

Play and pause Spotify.

Control Spotify là gì?

Control Spotify là một tiện ích mở rộng Chrome được phát triển bởi John Tantalo, và tính năng chính của nó là "Play and pause Spotify.".

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

Tải xuống các tệp mở rộng Control Spotify 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

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

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

Tên Control Spotify Control Spotify
ID ednibkmgpamaijdfjkdhdfgeklgfbllp
URL Chính Thức https://chrome.google.com/webstore/detail/control-spotify/ednibkmgpamaijdfjkdhdfgeklgfbllp
Mô tả Play and pause Spotify.
Kích Thước Tệp 11.05 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2013-05-27
Ngày Phát Hành 2013-05-27
Đánh Giá 2.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển John Tantalo
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tantalor/control-spotify-chrome-ext
URL Trang Trợ Giúp https://github.com/tantalor/control-spotify-chrome-ext/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}