Google Translate Right Click
Add a context menu item to translate for selected text at Google Translate.
Qu'est-ce que Google Translate Right Click ?
Google Translate Right Click est une extension Chrome développée par https://sites.google.com/site/tientx, et sa fonction principale est "Add a context menu item to translate for selected text at Google Translate.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Google Translate Right Click
Téléchargez les fichiers d'extension Google Translate Right Click au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Support multi-language via Google Translate
Informations de Base sur l'Extension
Nom | Google Translate Right Click |
ID | blbkkgcankcmdleleianggnfooalbjof |
URL Officiel | https://chromewebstore.google.com/detail/google-translate-right-cl/blbkkgcankcmdleleianggnfooalbjof |
Description | Add a context menu item to translate for selected text at Google Translate. |
Taille du Fichier | 29.05 KB |
Nombre d'Installations | 1,442 |
Version Actuelle | 0.83 |
Dernière Mise à Jour | 2020-07-14 |
Date de Publication | 2020-06-28 |
Évaluation | 4.50/5 Total 10 Évaluations |
Développeur | https://sites.google.com/site/tientx |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |