OnDemand Korea Subtitle Toggle

Customizable Keyboard Shortcut to Toggle English subtitles on ODK

OnDemand Korea Subtitle Toggle란 무엇입니까?

OnDemand Korea Subtitle Toggle은(는) dc315에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customizable Keyboard Shortcut to Toggle English subtitles on ODK"입니다.

확장 프로그램 스크린샷

screenshot

OnDemand Korea Subtitle Toggle 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}