iTour Video Translation
This extension translates video's audio on the current tab to your own language
Cos'è iTour Video Translation?
iTour Video Translation è un'estensione di Chrome sviluppata da iTourTranslator, e la sua funzione principale è "This extension translates video's audio on the current tab to your own language".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione iTour Video Translation
Scarica i file di estensione iTour Video Translation 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
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.
Informazioni di Base sull'Estensione
Nome | iTour Video Translation |
ID | eibnkkenjjeaadmjkngfincfnapgpeao |
URL Ufficiale | https://chromewebstore.google.com/detail/itour-video-translation/eibnkkenjjeaadmjkngfincfnapgpeao |
Descrizione | This extension translates video's audio on the current tab to your own language |
Dimensione del File | 2.36 MB |
Conteggio Installazioni | 44,946 |
Versione Corrente | 2.0.5 |
Ultimo Aggiornamento | 2023-03-29 |
Data di Pubblicazione | 2021-12-15 |
Valutazione | 4.92/5 Totale 1995 Valutazioni |
Sviluppatore | iTourTranslator |
[email protected] | |
Tipo di Pagamento | in_app |
Sito Web dell'Estensione | https://www.itourtranslator.com |
URL della Pagina di Aiuto | https://www.itourtranslator.com/unit.html |
URL della Pagina della Politica sulla Privacy | https://www.itourtranslator.com/privacy-policy.html |
Lingue Supportate | 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" ] } |