Spotimute
This extension mutes the spotify & gaana audio when ad comes.
Cos'è Spotimute?
Spotimute è un'estensione di Chrome sviluppata da piedcipher.dev, e la sua funzione principale è "This extension mutes the spotify & gaana audio when ad comes.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Spotimute
Scarica i file di estensione Spotimute in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.
Informazioni di Base sull'Estensione
Nome | Spotimute |
ID | mlkdhplkfffpgfkioemkjagaccinclgc |
URL Ufficiale | https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc |
Descrizione | This extension mutes the spotify & gaana audio when ad comes. |
Dimensione del File | 19.98 KB |
Conteggio Installazioni | 91 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2022-07-27 |
Data di Pubblicazione | 2022-07-21 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | piedcipher.dev |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://twitter.com/piedcipher |
URL della Pagina di Aiuto | https://github.com/piedcipher/spotimute/issues |
Lingue Supportate | 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" } } |