WWDC 한글 자막

WWDC 한글 자막 띄우기

Cos'è WWDC 한글 자막?

WWDC 한글 자막 è un'estensione di Chrome sviluppata da Finnn, e la sua funzione principale è "WWDC 한글 자막 띄우기".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione WWDC 한글 자막

Scarica i file di estensione WWDC 한글 자막 in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome WWDC 한글 자막 WWDC 한글 자막
ID maldceleendeilpfaoafibpahoopnnof
URL Ufficiale https://chromewebstore.google.com/detail/wwdc-%ED%95%9C%EA%B8%80-%EC%9E%90%EB%A7%89/maldceleendeilpfaoafibpahoopnnof
Descrizione WWDC 한글 자막 띄우기
Dimensione del File 126 KB
Conteggio Installazioni 811
Versione Corrente 3.0.1
Ultimo Aggiornamento 2023-12-19
Data di Pubblicazione 2022-06-13
Valutazione 5.00/5 Totale 27 Valutazioni
Sviluppatore Finnn
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}