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.」です。
拡張機能のスクリーンショット
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 |
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" } } |