OnDemand Korea Subtitle Toggle
Customizable Keyboard Shortcut to Toggle English subtitles on ODK
¿Qué es OnDemand Korea Subtitle Toggle?
OnDemand Korea Subtitle Toggle es una extensión de Chrome desarrollada por dc315, y su función principal es "Customizable Keyboard Shortcut to Toggle English subtitles on ODK".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión OnDemand Korea Subtitle Toggle
Descarga archivos de extensión OnDemand Korea Subtitle Toggle en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | pkpkndeemifdfocodpccfcpfjacdkpmb |
URL Oficial | https://chromewebstore.google.com/detail/ondemand-korea-subtitle-t/pkpkndeemifdfocodpccfcpfjacdkpmb |
Descripción | Customizable Keyboard Shortcut to Toggle English subtitles on ODK |
Tamaño del Archivo | 25.83 KB |
Cantidad de Instalaciones | 534 |
Versión Actual | 1.0 |
Última Actualización | 2019-06-24 |
Fecha de Publicación | 2019-06-23 |
Calificación | 4.00/5 Total de 2 Calificaciones |
Desarrollador | dc315 |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |