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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nohup.or.disown และคุณลักษณะหลักของมันคือ "Adds ability to change song speed with an input next to the volume slider."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spotify Playback Speed Access

ดาวน์โหลดไฟล์ส่วนขยาย 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 

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Spotify Playback Speed Access Spotify Playback Speed Access
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
}