asmr mode
This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.
O que é asmr mode?
asmr mode é uma extensão do Chrome desenvolvida por olinawu3w, e sua principal característica é "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão asmr mode
Baixe arquivos de extensão asmr mode 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 will cancel the sound of youtube ads and replace the sound with ASMR sounds of the user's choice. Currently, there are 3 ASMR replacement sounds to choose from: 1. cozy fireplace 2. rain 3. garden sounds The user can also choose to not have any replacement sounds.
Informações Básicas da Extensão
Nome | asmr mode |
ID | gjknipgeimfanjlgmjjjdfoiakpeihal |
URL Oficial | https://chromewebstore.google.com/detail/asmr-mode/gjknipgeimfanjlgmjjjdfoiakpeihal |
Descrição | This extension will cancel the sound of youtube ads and replace the sound with asmr sounds. |
Tamanho do Arquivo | 60.43 MB |
Contagem de Instalações | 124 |
Versão Atual | 0.1.0 |
Última Atualização | 2021-01-20 |
Data de Publicação | 2021-01-20 |
Classificação | 3.00/5 Total de 3 Avaliações |
Desenvolvedor | olinawu3w |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "asmr mode", "description": "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.", "version": "0.1.0", "manifest_version": 2, "icons": { "16": "media\/icon\/icon_small.png", "32": "media\/icon\/icon_small.png", "48": "media\/icon\/icon_big.png", "128": "media\/icon\/icon_big.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "options_page": "options.html", "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "browser_action": { "default_popup": "popup.html" } } |