Spotless

Effortless Spotify

Apa itu Spotless?

Spotless adalah ekstensi Chrome yang dikembangkan oleh phandd, dan fitur utamanya adalah "Effortless Spotify".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Spotless

Unduh file ekstensi Spotless dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Spotless Spotless
ID allccgoelledmdfenijoodhcfjndddjh
URL Resmi https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh
Deskripsi Effortless Spotify
Ukuran File 421 KB
Jumlah Instalasi 8,911
Versi Saat Ini 1.3.1
Terakhir Diperbarui 2020-03-16
Tanggal Publikasi 2020-03-15
Penilaian 4.54/5 Total 50 Penilaian
Pengembang phandd
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/phandd/spotless
URL Halaman Bantuan https://github.com/phandd/spotless
Bahasa yang Didukung 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"
            ]
        }
    ]
}