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! 擴展基本資訊
| 名稱 | |
| ID | bgehnoihoklmofgehcefiaicdcdgppck |
| 官方網址 | 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"
]
}
]
} | |