Spotify Playback Speed Access
Adds ability to change song speed with an input next to the volume slider.
Spotify Playback Speed Access là gì?
Spotify Playback Speed Access là một tiện ích mở rộng Chrome được phát triển bởi nohup.or.disown, và tính năng chính của nó là "Adds ability to change song speed with an input next to the volume slider.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Spotify Playback Speed Access
Tải xuống các tệp mở rộng Spotify Playback Speed Access dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | cgbihpjbhpdfbdckcabcniojdhcgblhd |
URL Chính Thức | https://chrome.google.com/webstore/detail/spotify-playback-speed-ac/cgbihpjbhpdfbdckcabcniojdhcgblhd |
Mô tả | Adds ability to change song speed with an input next to the volume slider. |
Kích Thước Tệp | 13.33 KB |
Số Lần Cài Đặt | 24,075 |
Phiên Bản Hiện Tại | 1.6 |
Cập Nhật Lần Cuối | 2019-10-08 |
Ngày Phát Hành | 2019-10-08 |
Đánh Giá | 3.06/5 Tổng số 157 Đánh Giá |
Nhà Phát Triển | nohup.or.disown |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/intOrfloat/spotitySpeedExtension |
Ngôn Ngữ Được Hỗ Trợ | 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 } |