Google Translate Right Click
Add a context menu item to translate for selected text at Google Translate.
O que é Google Translate Right Click?
Google Translate Right Click é uma extensão do Chrome desenvolvida por https://sites.google.com/site/tientx, e sua principal característica é "Add a context menu item to translate for selected text at Google Translate.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google Translate Right Click
Baixe arquivos de extensão Google Translate Right Click 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
Support multi-language via Google Translate
Informações Básicas da Extensão
Nome | Google Translate Right Click |
ID | blbkkgcankcmdleleianggnfooalbjof |
URL Oficial | https://chromewebstore.google.com/detail/google-translate-right-cl/blbkkgcankcmdleleianggnfooalbjof |
Descrição | Add a context menu item to translate for selected text at Google Translate. |
Tamanho do Arquivo | 29.05 KB |
Contagem de Instalações | 1,442 |
Versão Atual | 0.83 |
Última Atualização | 2020-07-14 |
Data de Publicação | 2020-06-28 |
Classificação | 4.50/5 Total de 10 Avaliações |
Desenvolvedor | https://sites.google.com/site/tientx |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "script.js", "js\/common\/languages.js" ] }, "browser_action": { "default_icon": { "128": "googletranslate_128x128.png" }, "default_popup": "options.html", "default_title": "Select the text you would like to translate, right mouse click and choose Google Translate" }, "content_scripts": [ { "all_frames": true, "js": [ "js\/common\/languages.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "description": "Add a context menu item to translate for selected text at Google Translate.", "icons": { "128": "googletranslate_128x128.png" }, "options_page": "options.html", "minimum_chrome_version": "6", "name": "Google Translate Right Click", "permissions": [ "contextMenus", "windows", "storage", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "version": "0.83", "manifest_version": 2 } |