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.

什么是Left Right Sound Select?

Left Right Sound Select是由newbigi开发的Chrome扩展程序,该扩展的主要功能是“Allow you to easily change stereo sound on web sites to mono left/right with one click. Useful for videos with dual-language tracks.”。

扩展截图

screenshot
screenshot

下载Left Right Sound Select扩展crx文件

下载Left Right Sound Select扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Left Right Sound Select Left Right Sound Select
ID gjaliinpmkmkehebabkfkhpbfaekgljn
官方URL https://chromewebstore.google.com/detail/left-right-sound-select/gjaliinpmkmkehebabkfkhpbfaekgljn
简介 Allow you to easily change stereo sound on web sites to mono left/right with one click. Useful for videos with dual-language tracks.
文件大小 33.38 KB
安装次数 4,130
当前版本 0.0.1
更新时间 2017-11-06
上架时间 2017-11-05
评分 2.91/5 共32次评分
开发者 newbigi
付费类型 free
支持的语言 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"
    }
}