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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |