Spotless
Effortless Spotify
Vad är Spotless?
Spotless är en Chrome-tillägg utvecklad av phandd, och dess huvudfunktion är "Effortless Spotify".
Tilläggsskärmbilder
Ladda ner Spotless-förlängningens CRX-fil
Ladda ner Spotless-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Spotless |
ID | allccgoelledmdfenijoodhcfjndddjh |
Officiell webbadress | https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh |
Beskrivning | Effortless Spotify |
Filstorlek | 421 KB |
Antal Installationer | 8,911 |
Aktuell Version | 1.3.1 |
Senast Uppdaterad | 2020-03-16 |
Publiceringsdatum | 2020-03-15 |
Betyg | 4.54/5 Totalt 50 Betyg |
Utvecklare | phandd |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/phandd/spotless |
Hjälpsida URL | https://github.com/phandd/spotless |
Stödda Språk | 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" ] } ] } |