Spotless
Effortless Spotify
Cos'è Spotless?
Spotless è un'estensione di Chrome sviluppata da phandd, e la sua funzione principale è "Effortless Spotify".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Spotless
Scarica i file di estensione Spotless 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
Too annoyed by Spotify Ads? Too lazy to navigate to Spotify when you want to change your music? Spotless is here to help you use Spotify effortless! What makes Spotless different from other Spotify players out there is you can control your Spotify player no matter what device you are using, what tab you are currently on. Try it out and you will love it! For source code and issue reporting: https://github.com/phandd/spotless
Informazioni di Base sull'Estensione
Nome | Spotless |
ID | allccgoelledmdfenijoodhcfjndddjh |
URL Ufficiale | https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh |
Descrizione | Effortless Spotify |
Dimensione del File | 421 KB |
Conteggio Installazioni | 8,911 |
Versione Corrente | 1.3.1 |
Ultimo Aggiornamento | 2020-03-16 |
Data di Pubblicazione | 2020-03-15 |
Valutazione | 4.54/5 Totale 50 Valutazioni |
Sviluppatore | phandd |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/phandd/spotless |
URL della Pagina di Aiuto | https://github.com/phandd/spotless |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spotless", "description": "Effortless Spotify", "version": "1.3.1", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Spotless", "default_popup": "popup.html" }, "permissions": [ "https:\/\/open.spotify.com\/", "https:\/\/spotify.com\/" ], "icons": { "128": "icon-128.png", "16": "icon-16.png" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "run_at": "document_end", "js": [ "content-script.js" ] } ] } |