Ad Mute for spotify.com

Automatically mutes advertisements between songs at spotify.com

Co to jest Ad Mute for spotify.com?

Ad Mute for spotify.com to rozszerzenie Chrome opracowane przez arismelachroinos, a jego główną funkcją jest „Automatically mutes advertisements between songs at spotify.com”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Ad Mute for spotify.com

Pobierz pliki rozszerzeń Ad Mute for spotify.com w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension has no UI.
It automatically mutes the chrome tab whenever an advertisement is playing, and unmutes it as soon as it is finished.

This extension has nothing to do with the Spotify company whatsoever.

I put a lot of time and effort making this free extension. If you enjoy it and you wish to support me, you can donate via this link:
https://www.paypal.com/donate/?hosted_button_id=BTK97P92ZF29U                    

Podstawowe informacje o rozszerzeniu

Nazwa Ad Mute for spotify.com Ad Mute for spotify.com
ID mjncgoplaadnohdddphicedebkafaphe
Oficjalny URL https://chromewebstore.google.com/detail/ad-mute-for-spotifycom/mjncgoplaadnohdddphicedebkafaphe
Opis Automatically mutes advertisements between songs at spotify.com
Rozmiar pliku 36.73 KB
Liczba instalacji 249
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2022-03-27
Data Publikacji 2021-10-18
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper arismelachroinos
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.freeprivacypolicy.com/live/2c558424-4917-4625-89ff-5f1d72958783
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ad Mute for spotify.com",
    "version": "0.2",
    "description": "Automatically mutes advertisements between songs at spotify.com",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.spotify.com\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    }
}