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 |
| 官方網址 | 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
} | |