OnDemand Korea Subtitle Toggle

Customizable Keyboard Shortcut to Toggle English subtitles on ODK

Was ist OnDemand Korea Subtitle Toggle?

OnDemand Korea Subtitle Toggle ist eine Chrome-Erweiterung, die von dc315 entwickelt wurde, und ihr Hauptmerkmal ist "Customizable Keyboard Shortcut to Toggle English subtitles on ODK".

Erweiterungsscreenshots

screenshot

OnDemand Korea Subtitle Toggle-Erweiterungs-CRX-Datei herunterladen

Laden Sie OnDemand Korea Subtitle Toggle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name OnDemand Korea Subtitle Toggle OnDemand Korea Subtitle Toggle
ID pkpkndeemifdfocodpccfcpfjacdkpmb
Offizielle URL https://chromewebstore.google.com/detail/ondemand-korea-subtitle-t/pkpkndeemifdfocodpccfcpfjacdkpmb
Beschreibung Customizable Keyboard Shortcut to Toggle English subtitles on ODK
Dateigröße 25.83 KB
Installationsanzahl 534
Aktuelle Version 1.0
Letztes Update 2019-06-24
Veröffentlichungsdatum 2019-06-23
Bewertung 4.00/5 Insgesamt 2 Bewertungen
Entwickler dc315
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}