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