Spotify Playback Speed Access
Adds ability to change song speed with an input next to the volume slider.
Qu'est-ce que Spotify Playback Speed Access ?
Spotify Playback Speed Access est une extension Chrome développée par nohup.or.disown, et sa fonction principale est "Adds ability to change song speed with an input next to the volume slider.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Spotify Playback Speed Access
Téléchargez les fichiers d'extension Spotify Playback Speed Access 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
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
Informations de Base sur l'Extension
Nom | |
ID | cgbihpjbhpdfbdckcabcniojdhcgblhd |
URL Officiel | https://chrome.google.com/webstore/detail/spotify-playback-speed-ac/cgbihpjbhpdfbdckcabcniojdhcgblhd |
Description | Adds ability to change song speed with an input next to the volume slider. |
Taille du Fichier | 13.33 KB |
Nombre d'Installations | 24,075 |
Version Actuelle | 1.6 |
Dernière Mise à Jour | 2019-10-08 |
Date de Publication | 2019-10-08 |
Évaluation | 3.06/5 Total 157 Évaluations |
Développeur | nohup.or.disown |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/intOrfloat/spotitySpeedExtension |
Langues Prises en Charge | 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 } |