Spotify on Browser
A minimalist Spotify player makes life easier
Spotify on Browserคืออะไร?
Spotify on Browser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย River และคุณลักษณะหลักของมันคือ "A minimalist Spotify player makes life easier"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spotify on Browser
ดาวน์โหลดไฟล์ส่วนขยาย Spotify on Browser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Spotify has a really cool feature called Spotify Connect. Basically it could turn anything into a Spotify player, and control it with your cellphone. I made this app trying to connect Spotify with Chrome.(Check it out: Firefox version is released!) Why use this player instead of Spotify website? 1. Play in background of Chrome, no need to keep Spotify website open; 2. Global keyboard shortcut to play/stop/next/previous/like; ("Like" means to save the track into your library.) 3. Transfer playback to Chrome seamlessly with just one click. Default keyboard shortcuts Play previous track: Ctrl+shift+7 Play or pause: Ctrl+shift+8 Play next track: Ctrl+shift+9 Save the track: Ctrl+shift+0 A small gadget just makes life a little bit easier. Besides, it's open source! https://github.com/revir/spotify-on-browser Read more: https://revir.github.io/2021/01/16/Spotify-on-Chrome/ Feedback can also be here: https://pnlpal.dev/category/3/feedback
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Spotify on Browser |
ID | kgniaoeehojejhienanbmikafmogfdfh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/spotify-on-browser/kgniaoeehojejhienanbmikafmogfdfh |
คำอธิบาย | A minimalist Spotify player makes life easier |
ขนาดไฟล์ | 2.47 MB |
จำนวนการติดตั้ง | 921 |
เวอร์ชันปัจจุบัน | 0.0.6 |
อัปเดตครั้งล่าสุด | 2021-06-03 |
วันที่เผยแพร่ | 2021-01-18 |
คะแนน | 4.40/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | River |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/revir/spotify-on-chrome |
URL หน้าช่วยเหลือ | https://github.com/revir/spotify-on-chrome |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A minimalist Spotify player makes life easier", "version": "0.0.6", "manifest_version": 2, "name": "Spotify on Browser", "permissions": [ "notifications" ], "background": { "persistent": true, "page": "background.html" }, "browser_action": { "default_title": "Spotify on Browser", "default_popup": "player.html" }, "options_ui": { "page": "option.html", "open_in_tab": true }, "icons": { "32": "images\/32.png", "64": "images\/64.png", "128": "images\/128.png", "256": "images\/256.png" }, "content_scripts": [ { "js": [ "authorized.bundle.js" ], "matches": [ "https:\/\/pnlpal.dev\/spotify-on-browser*" ] } ], "web_accessible_resources": [ "authorized.html" ], "commands": { "toggle-feature-previous": { "suggested_key": { "default": "Ctrl+Shift+7" }, "global": true, "description": "Play previous track" }, "toggle-feature-play": { "suggested_key": { "default": "Ctrl+Shift+8" }, "global": true, "description": "Play or pause" }, "toggle-feature-next": { "suggested_key": { "default": "Ctrl+Shift+9" }, "global": true, "description": "Play next track" }, "toggle-feature-save": { "suggested_key": { "default": "Ctrl+Shift+0" }, "global": true, "description": "Save the track" } } } |