Spotless
Effortless Spotify
Was ist Spotless?
Spotless ist eine Chrome-Erweiterung, die von phandd entwickelt wurde, und ihr Hauptmerkmal ist "Effortless Spotify".
Erweiterungsscreenshots
Spotless-Erweiterungs-CRX-Datei herunterladen
Laden Sie Spotless-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Spotless |
ID | allccgoelledmdfenijoodhcfjndddjh |
Offizielle URL | https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh |
Beschreibung | Effortless Spotify |
Dateigröße | 421 KB |
Installationsanzahl | 8,911 |
Aktuelle Version | 1.3.1 |
Letztes Update | 2020-03-16 |
Veröffentlichungsdatum | 2020-03-15 |
Bewertung | 4.54/5 Insgesamt 50 Bewertungen |
Entwickler | phandd |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/phandd/spotless |
Hilfeseite URL | https://github.com/phandd/spotless |
Unterstützte Sprachen | 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" ] } ] } |