Spotless

Effortless Spotify

What is Spotless?

Spotless is a Chrome extension developed by phandd, and its main feature is "Effortless Spotify".

Extension Screenshots

screenshot

Download Spotless Extension CRX File

Download Spotless extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Spotless Spotless
ID allccgoelledmdfenijoodhcfjndddjh
Official URL https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh
Description Effortless Spotify
File Size 421 KB
Installation Count 8,911
Current Version 1.3.1
Last Updated 2020-03-16
Publish Date 2020-03-15
Rating 4.54/5 Total 50 Ratings
Developer phandd
Email [email protected]
Payment Type free
Extension Website https://github.com/phandd/spotless
Help Page URL https://github.com/phandd/spotless
Supported Languages 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"
            ]
        }
    ]
}