YouTube: Play Only Audio
Turn off video of any YouTube video and play only its audio.
O que é YouTube: Play Only Audio?
YouTube: Play Only Audio é uma extensão do Chrome desenvolvida por https://dhaval.xyz, e sua principal característica é "Turn off video of any YouTube video and play only its audio.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube: Play Only Audio
Baixe arquivos de extensão YouTube: Play Only Audio 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
Adds a "VIDEO: ON/OFF" toggle button to the YouTube video player to allow you to quickly and easily turn off video of any YouTube video and play only its audio. This extension works on individual tabs meaning you can disable video playback in one window or tab and have it enabled in another. Note: Ad-blocking software might affect the functioning of this extension. This extension may not work with live videos.
Informações Básicas da Extensão
Nome | YouTube: Play Only Audio |
ID | abbndgdlfmdnhpnjpbeeioojnbfcakmo |
URL Oficial | https://chromewebstore.google.com/detail/youtube-play-only-audio/abbndgdlfmdnhpnjpbeeioojnbfcakmo |
Descrição | Turn off video of any YouTube video and play only its audio. |
Tamanho do Arquivo | 11.6 KB |
Contagem de Instalações | 33 |
Versão Atual | 1.0.5 |
Última Atualização | 2021-01-14 |
Data de Publicação | 2021-01-10 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://dhaval.xyz |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube: Play Only Audio", "version": "1.0.5", "description": "Turn off video of any YouTube video and play only its audio.", "permissions": [ "webRequest", "*:\/\/www.youtube.com\/*", "*:\/\/*.googlevideo.com\/*" ], "icons": { "16": "assets\/[email protected]", "32": "assets\/[email protected]", "48": "assets\/[email protected]", "96": "assets\/[email protected]", "128": "assets\/[email protected]" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "youtube.js" ], "run_at": "document_start" } ] } |