Spotify Playback Speed
Adds a button and menu to manipulate playback speed on Spotify Web.
Spotify Playback Speedคืออะไร?
Spotify Playback Speed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย raphael m และคุณลักษณะหลักของมันคือ "Adds a button and menu to manipulate playback speed on Spotify Web."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spotify Playback Speed
ดาวน์โหลดไฟล์ส่วนขยาย Spotify Playback Speed ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Quickly change playback speed on Spotify Web because some songs just sound better faster or slower. -- Release notes -- December 5, 2023: * Fixed preserve pitch setting not being remembered * Fixed playback rate not being set right away when changing value August 17 & 20, 2023: * Fixed a bug from a recent Spotify Web update that caused the extension to not show up. August 15, 2023: * Added more checks to ensure a bug causing playback speed of 0 doesn't get set. August 3, 2023: * Fixed a bug that was causing potential audio artifacts due to unintended playback speed changes coming from a recent Spotify Web update. - Big thanks to Kamil K. for the help!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Spotify Playback Speed |
ID | bgehnoihoklmofgehcefiaicdcdgppck |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/spotify-playback-speed/bgehnoihoklmofgehcefiaicdcdgppck |
คำอธิบาย | Adds a button and menu to manipulate playback speed on Spotify Web. |
ขนาดไฟล์ | 17.99 KB |
จำนวนการติดตั้ง | 28,756 |
เวอร์ชันปัจจุบัน | 1.11 |
อัปเดตครั้งล่าสุด | 2023-12-05 |
วันที่เผยแพร่ | 2021-08-19 |
คะแนน | 4.68/5 รวมทั้งหมด 182 คะแนน |
ผู้พัฒนา | raphael m |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify Playback Speed", "description": "Adds a button and menu to manipulate playback speed on Spotify Web.", "version": "1.11", "manifest_version": 3, "author": "@rnikko", "icons": { "16": "icon16.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "content-script.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "resources": [ "script.js" ] } ] } |