Spotify Playback Speed
Adds a button and menu to manipulate playback speed on Spotify Web.
什么是Spotify Playback Speed?
Spotify Playback Speed是由raphael m开发的Chrome扩展程序,该扩展的主要功能是“Adds a button and menu to manipulate playback speed on Spotify Web.”。
扩展截图
下载Spotify Playback Speed扩展crx文件
下载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" ] } ] } |