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 là gì?

Left Right Sound Select là một tiện ích mở rộng Chrome được phát triển bởi newbigi, và tính năng chính của nó là "Allow you to easily change stereo sound on web sites to mono left/right with one click. Useful for videos with dual-language tracks.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Left Right Sound Select

Tải xuống các tệp mở rộng Left Right Sound Select dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Left Right Sound Select Left Right Sound Select
ID gjaliinpmkmkehebabkfkhpbfaekgljn
URL Chính Thức https://chromewebstore.google.com/detail/left-right-sound-select/gjaliinpmkmkehebabkfkhpbfaekgljn
Mô tả Allow you to easily change stereo sound on web sites to mono left/right with one click. Useful for videos with dual-language tracks.
Kích Thước Tệp 33.38 KB
Số Lần Cài Đặt 4,130
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2017-11-06
Ngày Phát Hành 2017-11-05
Đánh Giá 2.91/5 Tổng số 32 Đánh Giá
Nhà Phát Triển newbigi
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}