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 |
Eメール | [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" ] } ] } |