OnDemand Korea Subtitle Toggle
Customizable Keyboard Shortcut to Toggle English subtitles on ODK
OnDemand Korea Subtitle Toggleคืออะไร?
OnDemand Korea Subtitle Toggle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dc315 และคุณลักษณะหลักของมันคือ "Customizable Keyboard Shortcut to Toggle English subtitles on ODK"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OnDemand Korea Subtitle Toggle
ดาวน์โหลดไฟล์ส่วนขยาย OnDemand Korea Subtitle Toggle ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
For those trying to learn Korean, ODK Subtitle toggle is for you. This chrome extension allows you to create a custom shortcut key for toggling subtitles on and off on the OnDemandKorea website. A subtitle toggle allows you to easily turn on subtitles when you don't understand a portion and turn off when you want to practice. To change the custom shortcut key, simply press the extension icon in the top right corner, and input the key you would like to make the shortcut key. *IMPORTANT* Page must be refreshed every time key is updated.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | pkpkndeemifdfocodpccfcpfjacdkpmb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ondemand-korea-subtitle-t/pkpkndeemifdfocodpccfcpfjacdkpmb |
คำอธิบาย | Customizable Keyboard Shortcut to Toggle English subtitles on ODK |
ขนาดไฟล์ | 25.83 KB |
จำนวนการติดตั้ง | 534 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2019-06-24 |
วันที่เผยแพร่ | 2019-06-23 |
คะแนน | 4.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | dc315 |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "OnDemand Korea Subtitle Toggle", "version": "1.0", "short_name": "ODK", "description": "Customizable Keyboard Shortcut to Toggle English subtitles on ODK", "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/www.ondemandkorea.com\/*" ] } ], "web_accessible_resources": [ "injectscript.js" ], "externally_connectable": { "matches": [ "https:\/\/www.ondemandkorea.com\/*" ] }, "background": { "scripts": [ "keylistener.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png", "default_popup": "settings.html", "default_title": "ODK Subtitle Toggle" }, "permissions": [ "storage" ] } |