Spotless
Effortless Spotify
Qu'est-ce que Spotless ?
Spotless est une extension Chrome développée par phandd, et sa fonction principale est "Effortless Spotify".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Spotless
Téléchargez les fichiers d'extension Spotless 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
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
Informations de Base sur l'Extension
Nom | Spotless |
ID | allccgoelledmdfenijoodhcfjndddjh |
URL Officiel | https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh |
Description | Effortless Spotify |
Taille du Fichier | 421 KB |
Nombre d'Installations | 8,911 |
Version Actuelle | 1.3.1 |
Dernière Mise à Jour | 2020-03-16 |
Date de Publication | 2020-03-15 |
Évaluation | 4.54/5 Total 50 Évaluations |
Développeur | phandd |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/phandd/spotless |
URL de la Page d'Aide | https://github.com/phandd/spotless |
Langues Prises en Charge | 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" ] } ] } |