OnDemand Korea Subtitle Toggle
Customizable Keyboard Shortcut to Toggle English subtitles on ODK
What is OnDemand Korea Subtitle Toggle?
OnDemand Korea Subtitle Toggle is a Chrome extension developed by dc315, and its main feature is "Customizable Keyboard Shortcut to Toggle English subtitles on ODK".
Extension Screenshots
Download OnDemand Korea Subtitle Toggle Extension CRX File
Download OnDemand Korea Subtitle Toggle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | pkpkndeemifdfocodpccfcpfjacdkpmb |
Official URL | https://chromewebstore.google.com/detail/ondemand-korea-subtitle-t/pkpkndeemifdfocodpccfcpfjacdkpmb |
Description | Customizable Keyboard Shortcut to Toggle English subtitles on ODK |
File Size | 25.83 KB |
Installation Count | 534 |
Current Version | 1.0 |
Last Updated | 2019-06-24 |
Publish Date | 2019-06-23 |
Rating | 4.00/5 Total 2 Ratings |
Developer | dc315 |
Payment Type | free |
Supported Languages | 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" ] } |