YouTube™ Comment Translate

Automatically translate YouTube comments using the Google-Translate API

O que é YouTube™ Comment Translate?

YouTube™ Comment Translate é uma extensão do Chrome desenvolvida por toluschr, e sua principal característica é "Automatically translate YouTube comments using the Google-Translate API".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão YouTube™ Comment Translate

Baixe arquivos de extensão YouTube™ Comment Translate no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This extension allows the user to translate YouTube comments with the click of a single button, right next to the comment. This is useful, i.e. when listening to music from other countries. The sourcecode is openly available on GitHub.                    

Informações Básicas da Extensão

Nome YouTube™ Comment Translate YouTube™ Comment Translate
ID alaejlmlpgcffloicejpccebbeeibemo
URL Oficial https://chromewebstore.google.com/detail/youtube-comment-translate/alaejlmlpgcffloicejpccebbeeibemo
Descrição Automatically translate YouTube comments using the Google-Translate API
Tamanho do Arquivo 35.86 KB
Contagem de Instalações 36,447
Versão Atual 1.2.4
Última Atualização 2024-02-02
Data de Publicação 2020-11-26
Classificação 4.41/5 Total de 91 Avaliações
Desenvolvedor toluschr
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/toluschr/Youtube-Comment-Translate
URL da Página de Ajuda https://github.com/toluschr/YouTube-Comment-Translate/issues/new
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube\u2122 Comment Translate",
    "version": "1.2.4",
    "description": "Automatically translate YouTube comments using the Google-Translate API",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "manifest_version": 3,
    "content_security_policy": [],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ]
}