OnDemand Korea Subtitle Toggle
Customizable Keyboard Shortcut to Toggle English subtitles on ODK
OnDemand Korea Subtitle Toggle là gì?
OnDemand Korea Subtitle Toggle là một tiện ích mở rộng Chrome được phát triển bởi dc315, và tính năng chính của nó là "Customizable Keyboard Shortcut to Toggle English subtitles on ODK".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng OnDemand Korea Subtitle Toggle
Tải xuống các tệp mở rộng OnDemand Korea Subtitle Toggle dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | pkpkndeemifdfocodpccfcpfjacdkpmb |
URL Chính Thức | https://chromewebstore.google.com/detail/ondemand-korea-subtitle-t/pkpkndeemifdfocodpccfcpfjacdkpmb |
Mô tả | Customizable Keyboard Shortcut to Toggle English subtitles on ODK |
Kích Thước Tệp | 25.83 KB |
Số Lần Cài Đặt | 534 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2019-06-24 |
Ngày Phát Hành | 2019-06-23 |
Đánh Giá | 4.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | dc315 |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |