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 |
公式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" ] } |