OnDemand Korea Subtitle Toggle

Customizable Keyboard Shortcut to Toggle English subtitles on ODK

Co to jest OnDemand Korea Subtitle Toggle?

OnDemand Korea Subtitle Toggle to rozszerzenie Chrome opracowane przez dc315, a jego główną funkcją jest „Customizable Keyboard Shortcut to Toggle English subtitles on ODK”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia OnDemand Korea Subtitle Toggle

Pobierz pliki rozszerzeń OnDemand Korea Subtitle Toggle w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa OnDemand Korea Subtitle Toggle OnDemand Korea Subtitle Toggle
ID pkpkndeemifdfocodpccfcpfjacdkpmb
Oficjalny URL https://chromewebstore.google.com/detail/ondemand-korea-subtitle-t/pkpkndeemifdfocodpccfcpfjacdkpmb
Opis Customizable Keyboard Shortcut to Toggle English subtitles on ODK
Rozmiar pliku 25.83 KB
Liczba instalacji 534
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-06-24
Data Publikacji 2019-06-23
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper dc315
Typ Płatności free
Obsługiwane Języki 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"
    ]
}