Spotify Playback Speed

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

¿Qué es Spotify Playback Speed?

Spotify Playback Speed es una extensión de Chrome desarrollada por raphael m, y su función principal es "Adds a button and menu to manipulate playback speed on Spotify Web.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Spotify Playback Speed

Descarga archivos de extensión Spotify Playback Speed en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Spotify Playback Speed Spotify Playback Speed
ID bgehnoihoklmofgehcefiaicdcdgppck
URL Oficial https://chromewebstore.google.com/detail/spotify-playback-speed/bgehnoihoklmofgehcefiaicdcdgppck
Descripción Adds a button and menu to manipulate playback speed on Spotify Web.
Tamaño del Archivo 17.99 KB
Cantidad de Instalaciones 28,756
Versión Actual 1.11
Última Actualización 2023-12-05
Fecha de Publicación 2021-08-19
Calificación 4.68/5 Total de 182 Calificaciones
Desarrollador raphael m
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}