Control Spotify

Play and pause Spotify.

Control Spotifyคืออะไร?

Control Spotify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย John Tantalo และคุณลักษณะหลักของมันคือ "Play and pause Spotify."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Control Spotify

ดาวน์โหลดไฟล์ส่วนขยาย Control Spotify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Control Spotify Control Spotify
ID ednibkmgpamaijdfjkdhdfgeklgfbllp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/control-spotify/ednibkmgpamaijdfjkdhdfgeklgfbllp
คำอธิบาย Play and pause Spotify.
ขนาดไฟล์ 11.05 KB
จำนวนการติดตั้ง 14
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2013-05-27
วันที่เผยแพร่ 2013-05-27
คะแนน 2.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา John Tantalo
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tantalor/control-spotify-chrome-ext
URL หน้าช่วยเหลือ https://github.com/tantalor/control-spotify-chrome-ext/issues
ภาษาที่รองรับ 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"
    }
}