Spotimute
This extension mutes the spotify & gaana audio when ad comes.
Co to jest Spotimute?
Spotimute to rozszerzenie Chrome opracowane przez piedcipher.dev, a jego główną funkcją jest „This extension mutes the spotify & gaana audio when ad comes.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Spotimute
Pobierz pliki rozszerzeń Spotimute 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 auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.
Podstawowe informacje o rozszerzeniu
Nazwa | Spotimute |
ID | mlkdhplkfffpgfkioemkjagaccinclgc |
Oficjalny URL | https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc |
Opis | This extension mutes the spotify & gaana audio when ad comes. |
Rozmiar pliku | 19.98 KB |
Liczba instalacji | 91 |
Aktualna Wersja | 0.0.2 |
Ostatnia Aktualizacja | 2022-07-27 |
Data Publikacji | 2022-07-21 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | piedcipher.dev |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://twitter.com/piedcipher |
Adres URL Strony Pomocy | https://github.com/piedcipher/spotimute/issues |
Obsługiwane Języki | 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" } } |