OnDemand Korea Subtitle Toggle

Customizable Keyboard Shortcut to Toggle English subtitles on ODK

OnDemand Korea Subtitle Toggle क्या है?

OnDemand Korea Subtitle Toggle dc315 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Customizable Keyboard Shortcut to Toggle English subtitles on ODK"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में OnDemand Korea Subtitle Toggle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम OnDemand Korea Subtitle Toggle OnDemand Korea Subtitle Toggle
ID pkpkndeemifdfocodpccfcpfjacdkpmb
आधिकारिक URL https://chromewebstore.google.com/detail/ondemand-korea-subtitle-t/pkpkndeemifdfocodpccfcpfjacdkpmb
विवरण Customizable Keyboard Shortcut to Toggle English subtitles on ODK
फ़ाइल का आकार 25.83 KB
स्थापना संख्या 534
वर्तमान संस्करण 1.0
अंतिम अपडेट 2019-06-24
प्रकाशन तिथि 2019-06-23
रेटिंग 4.00/5 कुल 2 रेटिंग्स
डेवलपर dc315
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}