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
}