OnDemand Korea Subtitle Toggle
Customizable Keyboard Shortcut to Toggle English subtitles on ODK
Cos'è OnDemand Korea Subtitle Toggle?
OnDemand Korea Subtitle Toggle è un'estensione di Chrome sviluppata da dc315, e la sua funzione principale è "Customizable Keyboard Shortcut to Toggle English subtitles on ODK".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OnDemand Korea Subtitle Toggle
Scarica i file di estensione OnDemand Korea Subtitle Toggle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | pkpkndeemifdfocodpccfcpfjacdkpmb |
URL Ufficiale | https://chromewebstore.google.com/detail/ondemand-korea-subtitle-t/pkpkndeemifdfocodpccfcpfjacdkpmb |
Descrizione | Customizable Keyboard Shortcut to Toggle English subtitles on ODK |
Dimensione del File | 25.83 KB |
Conteggio Installazioni | 534 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2019-06-24 |
Data di Pubblicazione | 2019-06-23 |
Valutazione | 4.00/5 Totale 2 Valutazioni |
Sviluppatore | dc315 |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |