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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}