Spotimute
This extension mutes the spotify & gaana audio when ad comes.
O que é Spotimute?
Spotimute é uma extensão do Chrome desenvolvida por piedcipher.dev, e sua principal característica é "This extension mutes the spotify & gaana audio when ad comes.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Spotimute
Baixe arquivos de extensão Spotimute no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.
Informações Básicas da Extensão
Nome | Spotimute |
ID | mlkdhplkfffpgfkioemkjagaccinclgc |
URL Oficial | https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc |
Descrição | This extension mutes the spotify & gaana audio when ad comes. |
Tamanho do Arquivo | 19.98 KB |
Contagem de Instalações | 91 |
Versão Atual | 0.0.2 |
Última Atualização | 2022-07-27 |
Data de Publicação | 2022-07-21 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | piedcipher.dev |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://twitter.com/piedcipher |
URL da Página de Ajuda | https://github.com/piedcipher/spotimute/issues |
Idiomas Suportados | 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" } } |