Spotify Playback Speed Access

Adds ability to change song speed with an input next to the volume slider.

Cos'è Spotify Playback Speed Access?

Spotify Playback Speed Access è un'estensione di Chrome sviluppata da nohup.or.disown, e la sua funzione principale è "Adds ability to change song speed with an input next to the volume slider.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Spotify Playback Speed Access

Scarica i file di estensione Spotify Playback Speed Access 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

                        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 

Informazioni di Base sull'Estensione

Nome Spotify Playback Speed Access Spotify Playback Speed Access
ID cgbihpjbhpdfbdckcabcniojdhcgblhd
URL Ufficiale https://chrome.google.com/webstore/detail/spotify-playback-speed-ac/cgbihpjbhpdfbdckcabcniojdhcgblhd
Descrizione Adds ability to change song speed with an input next to the volume slider.
Dimensione del File 13.33 KB
Conteggio Installazioni 24,075
Versione Corrente 1.6
Ultimo Aggiornamento 2019-10-08
Data di Pubblicazione 2019-10-08
Valutazione 3.06/5 Totale 157 Valutazioni
Sviluppatore nohup.or.disown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/intOrfloat/spotitySpeedExtension
Lingue Supportate 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
}