Spotify Playback Speed
Adds a button and menu to manipulate playback speed on Spotify Web.
Cos'è Spotify Playback Speed?
Spotify Playback Speed è un'estensione di Chrome sviluppata da raphael m, e la sua funzione principale è "Adds a button and menu to manipulate playback speed on Spotify Web.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Spotify Playback Speed
Scarica i file di estensione Spotify Playback Speed in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Spotify Playback Speed |
ID | bgehnoihoklmofgehcefiaicdcdgppck |
URL Ufficiale | https://chromewebstore.google.com/detail/spotify-playback-speed/bgehnoihoklmofgehcefiaicdcdgppck |
Descrizione | Adds a button and menu to manipulate playback speed on Spotify Web. |
Dimensione del File | 17.99 KB |
Conteggio Installazioni | 28,756 |
Versione Corrente | 1.11 |
Ultimo Aggiornamento | 2023-12-05 |
Data di Pubblicazione | 2021-08-19 |
Valutazione | 4.68/5 Totale 182 Valutazioni |
Sviluppatore | raphael m |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |