OnDemand Korea Subtitle Toggle
Customizable Keyboard Shortcut to Toggle English subtitles on ODK
什麼是OnDemand Korea Subtitle Toggle?
OnDemand Korea Subtitle Toggle是由dc315開發的Chrome擴展程式,該擴展的主要功能是“Customizable Keyboard Shortcut to Toggle English subtitles on ODK”。
擴展截圖
下載OnDemand Korea Subtitle Toggle擴展crx文件
下載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 |
官方網址 | 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" ] } |