Youtube Translater
Translate youtube comments to a preferred language
O que é Youtube Translater?
Youtube Translater é uma extensão do Chrome desenvolvida por theimmortalwarrior071, e sua principal característica é "Translate youtube comments to a preferred language".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Youtube Translater
Baixe arquivos de extensão Youtube Translater 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
Translate youtube comments with a click of a button. Select the destination language through the popup and start translating comments to that desired language.
Informações Básicas da Extensão
Nome | Youtube Translater |
ID | hbmhbomgnplnfobcbmlglcpahldkepfg |
URL Oficial | https://chromewebstore.google.com/detail/youtube-translater/hbmhbomgnplnfobcbmlglcpahldkepfg |
Descrição | Translate youtube comments to a preferred language |
Tamanho do Arquivo | 10.45 KB |
Contagem de Instalações | 24 |
Versão Atual | 0.1.0 |
Última Atualização | 2023-07-27 |
Data de Publicação | 2023-07-27 |
Classificação | 4.60/5 Total de 10 Avaliações |
Desenvolvedor | theimmortalwarrior071 |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Translater", "description": "Translate youtube comments to a preferred language", "version": "0.1.0", "permissions": [ "storage", "tabs" ], "icons": { "128": "icons\/logo.png" }, "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ] } |