Udemy Double Subtitle

Double Subtitle

Udemy Double Subtitle란 무엇입니까?

Udemy Double Subtitle은(는) robertkao5656에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Double Subtitle"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Udemy Double Subtitle 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Support double subtitles for Udemy:
Subtitle Mode: 
    Support off, Single, and Dual
Second Language: 
    Supports 12 languages showing dual subtitles, they support Arabic, Chinese Traditional, Chinese Simplified, French, German, Hindi, Italian, Japanese, Korean, Portuguese, Spanish, and Turkmen.

If you have any ideas, issues, or suggestions, you can send them to me at [email protected]                    

확장 프로그램 기본 정보

이름 Udemy Double Subtitle Udemy Double Subtitle
ID hicpdhddknifpgembdnboojbnpmahfnj
공식 URL https://chromewebstore.google.com/detail/udemy-double-subtitle/hicpdhddknifpgembdnboojbnpmahfnj
설명 Double Subtitle
파일 크기 203 KB
설치 횟수 106
현재 버전 1.1.0
최근 업데이트 2023-12-13
출시 날짜 2023-10-30
개발자 robertkao5656
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Udemy Double Subtitle",
    "description": "Double Subtitle",
    "version": "1.1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Udemy Double Subtitle",
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.udemy.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "contentScript.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}