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 |
官方網址 | 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" } } |