Left Right Sound Select
Allow you to easily change stereo sound on web sites to mono left/right with one click. Useful for videos with dual-language tracks.
O que é Left Right Sound Select?
Left Right Sound Select é uma extensão do Chrome desenvolvida por newbigi, e sua principal característica é "Allow you to easily change stereo sound on web sites to mono left/right with one click. Useful for videos with dual-language tracks.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Left Right Sound Select
Baixe arquivos de extensão Left Right Sound Select 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 simple plugin allows you to change the sound output of the web page on the current tab to mono left or right easily with just a click. No need to fiddle with the OS volume control. Many videos on the internet utilize the left and right audio tracks for dual language channels, some could even contain separate audio tracks (commentary, etc.) on left and right channel. This plugin lets you switch between the two conveniently. Web sites that support the Left Right Sound Select Chrome extension can deeply integrate with it by firing events and listening to change events and integrate UI buttons directly on the page to switch audio tracks.
Informações Básicas da Extensão
Nome | Left Right Sound Select |
ID | gjaliinpmkmkehebabkfkhpbfaekgljn |
URL Oficial | https://chromewebstore.google.com/detail/left-right-sound-select/gjaliinpmkmkehebabkfkhpbfaekgljn |
Descrição | Allow you to easily change stereo sound on web sites to mono left/right with one click. Useful for videos with dual-language tracks. |
Tamanho do Arquivo | 33.38 KB |
Contagem de Instalações | 4,130 |
Versão Atual | 0.0.1 |
Última Atualização | 2017-11-06 |
Data de Publicação | 2017-11-05 |
Classificação | 2.91/5 Total de 32 Avaliações |
Desenvolvedor | newbigi |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Left Right Sound Select", "short_name": "Left Right Sound Select", "description": "Allow you to easily change stereo sound on web sites to mono left\/right with one click. Useful for videos with dual-language tracks.", "version": "0.0.1", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end", "all_frames": true } ], "browser_action": { "default_icon": { "256": "sound.png" }, "default_title": "Left Right Sound Select", "default_popup": "popup.html" } } |