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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |