Spotify Playback Speed Access
Adds ability to change song speed with an input next to the volume slider.
Spotify Playback Speed Access란 무엇입니까?
Spotify Playback Speed Access은(는) nohup.or.disown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds ability to change song speed with an input next to the volume slider."입니다.
확장 프로그램 스크린샷
Spotify Playback Speed Access 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
IMPORTANT: Refresh if it doesn't show up! The extension is open source so feel free to look at the heavily commented code on github here https://github.com/intOrfloat/spotitySpeedExtension Version 1.6: -Fix issue where speed input would sometimes not appear(race condition with loading dom) -Fixed issue where free version of spotify would load too quickly and cause the extension to load after spotify's scripts :'D btw ublock origin extension removes spotify ads Version 1.5: -Added redundancy to ensure the extension loads -Spotify started randomly using
확장 프로그램 기본 정보
이름 | |
ID | cgbihpjbhpdfbdckcabcniojdhcgblhd |
공식 URL | https://chrome.google.com/webstore/detail/spotify-playback-speed-ac/cgbihpjbhpdfbdckcabcniojdhcgblhd |
설명 | Adds ability to change song speed with an input next to the volume slider. |
파일 크기 | 13.33 KB |
설치 횟수 | 24,075 |
현재 버전 | 1.6 |
최근 업데이트 | 2019-10-08 |
출시 날짜 | 2019-10-08 |
평점 | 3.06/5 총 157 개의 평점 |
개발자 | nohup.or.disown |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/intOrfloat/spotitySpeedExtension |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify Playback Speed Access", "description": "Adds ability to change song speed with an input next to the volume slider.", "version": "1.6", "permissions": [ "storage" ], "icons": { "16": "speed16.png", "48": "speed48.png", "128": "speed128.png" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "content-script.js" ] } ], "manifest_version": 2 } |