WWDC 한글 자막

WWDC 한글 자막 띄우기

WWDC 한글 자막란 무엇입니까?

WWDC 한글 자막은(는) Finnn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "WWDC 한글 자막 띄우기"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

WWDC 한글 자막 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Apple WWDC 영상 하단 Transcript를 기반으로 한글 자막을 생성해줍니다.
개인공부용으로 만든 많이 부족한 프로그램이기에 피드백을 주시면 감사하겠습니다 😅


번역은 아래 네 가지 방식 중 선택이 가능합니다.
1. Chrome browser 자체 번역
2. Google API
3. Papago API
4. DeepL API

'Browser' 또는 'Google API'를 선택할 경우, 별도의 API Key 발급과정은 필요하지 않습니다.
'Papago API' 또는 'DeepL API'를 선택할 경우, API Key를 발급받아야 합니다.


번역 기능을 사용하기 때문에 번역이 매끄럽지 않을 수 있습니다.

자막이 화면을 가릴 경우 자막 크기를 조절해보세요. 😊




Apple WWDC:
https://developer.apple.com/videos/

Icon Attribution:
https://www.flaticon.com/
Language icons created by Freepik - Flaticon


Special thanks to Minsson                    

확장 프로그램 기본 정보

이름 WWDC 한글 자막 WWDC 한글 자막
ID maldceleendeilpfaoafibpahoopnnof
공식 URL https://chromewebstore.google.com/detail/wwdc-%ED%95%9C%EA%B8%80-%EC%9E%90%EB%A7%89/maldceleendeilpfaoafibpahoopnnof
설명 WWDC 한글 자막 띄우기
파일 크기 126 KB
설치 횟수 811
현재 버전 3.0.1
최근 업데이트 2023-12-19
출시 날짜 2022-06-13
평점 5.00/5 총 27 개의 평점
개발자 Finnn
이메일 [email protected]
결제 유형 free
지원되는 언어 ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WWDC \ud55c\uae00 \uc790\ub9c9",
    "description": "WWDC \ud55c\uae00 \uc790\ub9c9 \ub744\uc6b0\uae30",
    "version": "3.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png",
        "512": "images\/icon_512.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/api-free.deepl.com\/*",
        "*:\/\/api.deepl.com\/v2\/*",
        "*:\/\/openapi.naver.com\/*"
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/developer.apple.com\/videos\/*"
            ],
            "js": [
                "js\/global.js",
                "js\/wwdc_translater.js",
                "js\/helpers.js",
                "js\/google_browser_translate.js",
                "js\/google_translate.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "type": "module"
        }
    ],
    "web_accessible_resources": [
        "js\/global.js",
        "js\/wwdc_translater.js",
        "js\/helpers.js",
        "js\/google_browser_translate.js",
        "js\/google_translate.js"
    ]
}