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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย newbigi และคุณลักษณะหลักของมันคือ "Allow you to easily change stereo sound on web sites to mono left/right with one click. Useful for videos with dual-language tracks."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Left Right Sound Select
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |