Spotify Playback Speed Access
Adds ability to change song speed with an input next to the volume slider.
Τι είναι το Spotify Playback Speed Access;
Το Spotify Playback Speed Access είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nohup.or.disown, και η κύρια λειτουργία του είναι "Adds ability to change song speed with an input next to the volume slider.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Spotify Playback Speed Access
Λήψη αρχείων επέκτασης Spotify Playback Speed Access σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | cgbihpjbhpdfbdckcabcniojdhcgblhd |
Επίσημο URL | https://chrome.google.com/webstore/detail/spotify-playback-speed-ac/cgbihpjbhpdfbdckcabcniojdhcgblhd |
Περιγραφή | Adds ability to change song speed with an input next to the volume slider. |
Μέγεθος Αρχείου | 13.33 KB |
Αριθμός Εγκαταστάσεων | 24,075 |
Τρέχουσα Έκδοση | 1.6 |
Τελευταία Ενημέρωση | 2019-10-08 |
Ημερομηνία Δημοσίευσης | 2019-10-08 |
Αξιολόγηση | 3.06/5 Συνολικά 157 Αξιολογήσεις |
Προγραμματιστής | nohup.or.disown |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/intOrfloat/spotitySpeedExtension |
Υποστηριζόμενες Γλώσσες | 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 } |