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文件
下载Spotify Playback Speed Access扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
} | |