OnDemand Korea Subtitle Toggle

Customizable Keyboard Shortcut to Toggle English subtitles on ODK

O que é OnDemand Korea Subtitle Toggle?

OnDemand Korea Subtitle Toggle é uma extensão do Chrome desenvolvida por dc315, e sua principal característica é "Customizable Keyboard Shortcut to Toggle English subtitles on ODK".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão OnDemand Korea Subtitle Toggle

Baixe arquivos de extensão OnDemand Korea Subtitle Toggle no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome OnDemand Korea Subtitle Toggle OnDemand Korea Subtitle Toggle
ID pkpkndeemifdfocodpccfcpfjacdkpmb
URL Oficial https://chromewebstore.google.com/detail/ondemand-korea-subtitle-t/pkpkndeemifdfocodpccfcpfjacdkpmb
Descrição Customizable Keyboard Shortcut to Toggle English subtitles on ODK
Tamanho do Arquivo 25.83 KB
Contagem de Instalações 534
Versão Atual 1.0
Última Atualização 2019-06-24
Data de Publicação 2019-06-23
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor dc315
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}