WWDC 한글 자막
WWDC 한글 자막 띄우기
Apa itu WWDC 한글 자막?
WWDC 한글 자막 adalah ekstensi Chrome yang dikembangkan oleh Finnn, dan fitur utamanya adalah "WWDC 한글 자막 띄우기".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi WWDC 한글 자막
Unduh file ekstensi WWDC 한글 자막 dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | WWDC 한글 자막 |
ID | maldceleendeilpfaoafibpahoopnnof |
URL Resmi | https://chromewebstore.google.com/detail/wwdc-%ED%95%9C%EA%B8%80-%EC%9E%90%EB%A7%89/maldceleendeilpfaoafibpahoopnnof |
Deskripsi | WWDC 한글 자막 띄우기 |
Ukuran File | 126 KB |
Jumlah Instalasi | 811 |
Versi Saat Ini | 3.0.1 |
Terakhir Diperbarui | 2023-12-19 |
Tanggal Publikasi | 2022-06-13 |
Penilaian | 5.00/5 Total 27 Penilaian |
Pengembang | Finnn |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |