Spotless

Effortless Spotify

Wat is Spotless?

Spotless is een Chrome-extensie ontwikkeld door phandd, en de belangrijkste functie is "Effortless Spotify".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Spotless

Download Spotless-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Spotless Spotless
ID allccgoelledmdfenijoodhcfjndddjh
Officiële URL https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh
Beschrijving Effortless Spotify
Bestandsgrootte 421 KB
Aantal Installaties 8,911
Huidige Versie 1.3.1
Laatst Bijgewerkt 2020-03-16
Publicatiedatum 2020-03-15
Beoordeling 4.54/5 Totaal 50 Beoordelingen
Ontwikkelaar phandd
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/phandd/spotless
Help Pagina-URL https://github.com/phandd/spotless
Ondersteunde Talen 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"
            ]
        }
    ]
}