iTour Video Translation
This extension translates video's audio on the current tab to your own language
iTour Video Translation란 무엇입니까?
iTour Video Translation은(는) iTourTranslator에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension translates video's audio on the current tab to your own language"입니다.
확장 프로그램 스크린샷
iTour Video Translation 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension can be used to translate online meetings (such as Zoom , Microsoft Teams, Google Meet,Webex, Canvas, etc.), online videos into two languages subtitle. If you set the sound source to the microphone in the extension, you can translate the video into subtitles being played in the computer in real time, and you can also translate the sound outside the computer in real time. Many international students use this software to translate Zoom online courses. There are also many international students who use this software to translate lectures taught by professors in the classroom in real time. The software automatically translates voices and takes notes for students. It supports dozens of languages, and the translation is fast and accurate. The software can be tried for free.
확장 프로그램 기본 정보
이름 | iTour Video Translation |
ID | eibnkkenjjeaadmjkngfincfnapgpeao |
공식 URL | https://chromewebstore.google.com/detail/itour-video-translation/eibnkkenjjeaadmjkngfincfnapgpeao |
설명 | This extension translates video's audio on the current tab to your own language |
파일 크기 | 2.36 MB |
설치 횟수 | 44,946 |
현재 버전 | 2.0.5 |
최근 업데이트 | 2023-03-29 |
출시 날짜 | 2021-12-15 |
평점 | 4.92/5 총 1995 개의 평점 |
개발자 | iTourTranslator |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://www.itourtranslator.com |
도움말 페이지 URL | https://www.itourtranslator.com/unit.html |
개인정보 보호 정책 페이지 URL | https://www.itourtranslator.com/privacy-policy.html |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "iTour Video Translation", "version": "2.0.5", "description": "This extension translates video's audio on the current tab to your own language", "content_security_policy": { "script-src": "self", "object-src": "self" }, "icons": { "16": "static\/img\/app_icon.png", "19": "static\/img\/app_icon.png", "38": "static\/img\/app_icon.png", "48": "static\/img\/app_icon.png", "128": "static\/img\/app_icon.png" }, "action": { "default_icon": "static\/img\/app_icon.png", "default_title": "iTour Video Translation", "default_popup": "popup.html" }, "options_page": "option.html", "background": { "service_worker": "background.main.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [], "js": [ "content.main.js" ], "run_at": "document_end" } ], "host_permissions": [ "*:\/\/*\/*" ], "permissions": [ "storage", "downloads", "unlimitedStorage", "cookies", "desktopCapture" ] } |