WWDC 한글 자막
WWDC 한글 자막 띄우기
Qu'est-ce que WWDC 한글 자막 ?
WWDC 한글 자막 est une extension Chrome développée par Finnn, et sa fonction principale est "WWDC 한글 자막 띄우기".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension WWDC 한글 자막
Téléchargez les fichiers d'extension WWDC 한글 자막 au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | WWDC 한글 자막 |
ID | maldceleendeilpfaoafibpahoopnnof |
URL Officiel | https://chromewebstore.google.com/detail/wwdc-%ED%95%9C%EA%B8%80-%EC%9E%90%EB%A7%89/maldceleendeilpfaoafibpahoopnnof |
Description | WWDC 한글 자막 띄우기 |
Taille du Fichier | 126 KB |
Nombre d'Installations | 811 |
Version Actuelle | 3.0.1 |
Dernière Mise à Jour | 2023-12-19 |
Date de Publication | 2022-06-13 |
Évaluation | 5.00/5 Total 27 Évaluations |
Développeur | Finnn |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |