Spotify Controller
Control Spotify Web Player from any window/tab.
Spotify Controllerคืออะไร?
Spotify Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joe Warren และคุณลักษณะหลักของมันคือ "Control Spotify Web Player from any window/tab."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spotify Controller
ดาวน์โหลดไฟล์ส่วนขยาย 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" } } } |