Spotify Playback Speed

Adds a button and menu to manipulate playback speed on Spotify Web.

Что такое Spotify Playback Speed?

Spotify Playback Speed - это расширение Chrome, разработанное raphael m, и его основная функция - "Adds a button and menu to manipulate playback speed on Spotify Web.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Spotify Playback Speed

Скачайте файлы расширений Spotify Playback Speed в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Quickly change playback speed on Spotify Web because some songs just sound better faster or slower.

-- Release notes --

December 5, 2023:
* Fixed preserve pitch setting not being remembered
* Fixed playback rate not being set right away when changing value

August 17 & 20, 2023:
* Fixed a bug from a recent Spotify Web update that caused the extension to not show up.

August 15, 2023:
* Added more checks to ensure a bug causing playback speed of 0 doesn't get set.

August 3, 2023:
* Fixed a bug that was causing potential audio artifacts due to unintended playback speed changes coming from a recent Spotify Web update.
  - Big thanks to Kamil K. for the help!                    

Основная информация о расширении

Название Spotify Playback Speed Spotify Playback Speed
ID bgehnoihoklmofgehcefiaicdcdgppck
Официальный URL https://chromewebstore.google.com/detail/spotify-playback-speed/bgehnoihoklmofgehcefiaicdcdgppck
Описание Adds a button and menu to manipulate playback speed on Spotify Web.
Размер файла 17.99 KB
Количество установок 28,756
Текущая Версия 1.11
Последнее Обновление 2023-12-05
Дата публикации 2021-08-19
Рейтинг 4.68/5 Всего 182 оценок
Разработчик raphael m
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Playback Speed",
    "description": "Adds a button and menu to manipulate playback speed on Spotify Web.",
    "version": "1.11",
    "manifest_version": 3,
    "author": "@rnikko",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "resources": [
                "script.js"
            ]
        }
    ]
}