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.
¿Qué es Left Right Sound Select?
Left Right Sound Select es una extensión de Chrome desarrollada por newbigi, y su función principal es "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 Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Left Right Sound Select
Descarga archivos de extensión Left Right Sound Select en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Left Right Sound Select |
ID | gjaliinpmkmkehebabkfkhpbfaekgljn |
URL Oficial | https://chromewebstore.google.com/detail/left-right-sound-select/gjaliinpmkmkehebabkfkhpbfaekgljn |
Descripción | Allow you to easily change stereo sound on web sites to mono left/right with one click. Useful for videos with dual-language tracks. |
Tamaño del Archivo | 33.38 KB |
Cantidad de Instalaciones | 4,130 |
Versión Actual | 0.0.1 |
Última Actualización | 2017-11-06 |
Fecha de Publicación | 2017-11-05 |
Calificación | 2.91/5 Total de 32 Calificaciones |
Desarrollador | newbigi |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |