Spotify Playback Speed
Adds a button and menu to manipulate playback speed on Spotify Web.
Qu'est-ce que Spotify Playback Speed ?
Spotify Playback Speed est une extension Chrome développée par raphael m, et sa fonction principale est "Adds a button and menu to manipulate playback speed on Spotify Web.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Spotify Playback Speed
Téléchargez les fichiers d'extension Spotify Playback Speed au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Spotify Playback Speed |
ID | bgehnoihoklmofgehcefiaicdcdgppck |
URL Officiel | https://chromewebstore.google.com/detail/spotify-playback-speed/bgehnoihoklmofgehcefiaicdcdgppck |
Description | Adds a button and menu to manipulate playback speed on Spotify Web. |
Taille du Fichier | 17.99 KB |
Nombre d'Installations | 28,756 |
Version Actuelle | 1.11 |
Dernière Mise à Jour | 2023-12-05 |
Date de Publication | 2021-08-19 |
Évaluation | 4.68/5 Total 182 Évaluations |
Développeur | raphael m |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |