Spotimute

This extension mutes the spotify & gaana audio when ad comes.

Apa itu Spotimute?

Spotimute adalah ekstensi Chrome yang dikembangkan oleh piedcipher.dev, dan fitur utamanya adalah "This extension mutes the spotify & gaana audio when ad comes.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Spotimute

Unduh file ekstensi Spotimute 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

                        This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.                    

Informasi Dasar Ekstensi

Nama Spotimute Spotimute
ID mlkdhplkfffpgfkioemkjagaccinclgc
URL Resmi https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc
Deskripsi This extension mutes the spotify & gaana audio when ad comes.
Ukuran File 19.98 KB
Jumlah Instalasi 91
Versi Saat Ini 0.0.2
Terakhir Diperbarui 2022-07-27
Tanggal Publikasi 2022-07-21
Penilaian 5.00/5 Total 3 Penilaian
Pengembang piedcipher.dev
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://twitter.com/piedcipher
URL Halaman Bantuan https://github.com/piedcipher/spotimute/issues
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotimute",
    "version": "0.0.2",
    "description": "This extension mutes the spotify & gaana audio when ad comes.",
    "manifest_version": 3,
    "author": "Tirth Patel",
    "action": {
        "default_popup": "index.html",
        "default_title": "Spotimute"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "spotify.js"
            ]
        },
        {
            "matches": [
                "https:\/\/gaana.com\/*"
            ],
            "js": [
                "gaana.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/assets\/_16.png",
        "48": ".\/assets\/_48.png",
        "128": ".\/assets\/_128.png"
    }
}