Right Click Translate
Right Click to translate selected text into a new Tab using Google Translate
Qu'est-ce que Right Click Translate ?
Right Click Translate est une extension Chrome développée par ndingar33, et sa fonction principale est "Right Click to translate selected text into a new Tab using Google Translate".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Right Click Translate
Téléchargez les fichiers d'extension Right Click Translate 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
This handy extension helps user to translate selected text into a new chrome tab via context menu. Unlike other in-place translation extensions, this extension keeps the original webpage clean and untouched. It also provides ability to let user choose a prefered target language. *1.9.2 fix bug and add create Post for twitter, facebook, reddit
Informations de Base sur l'Extension
Nom | Right Click Translate |
ID | piojkjkndneggfaibepkmabjnkjlhlmk |
URL Officiel | https://chromewebstore.google.com/detail/right-click-translate/piojkjkndneggfaibepkmabjnkjlhlmk |
Description | Right Click to translate selected text into a new Tab using Google Translate |
Taille du Fichier | 75 KB |
Nombre d'Installations | 102,715 |
Version Actuelle | 1.9.2 |
Dernière Mise à Jour | 2024-01-02 |
Date de Publication | 2018-07-04 |
Évaluation | 4.25/5 Total 93 Évaluations |
Développeur | ndingar33 |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://www.termsfeed.com/live/0bc575cf-9744-4219-93c1-62d012278d21 |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Right Click Translate", "description": "Right Click to translate selected text into a new Tab using Google Translate", "version": "1.9.2", "manifest_version": 3, "icons": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "action": { "default_popup": "src\/popup.html" }, "options_ui": { "page": "src\/options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*", "*:\/\/twitter.com\/*", "*:\/\/*.reddit.com\/*", "*:\/\/*.google.com\/*" ], "js": [ "src\/content.js" ], "css": [ "style.css" ] } ], "permissions": [ "contextMenus", "storage", "declarativeNetRequest" ], "host_permissions": [ "*:\/\/*.facebook.com\/*", "*:\/\/twitter.com\/*", "*:\/\/*.reddit.com\/*" ], "background": { "service_worker": "src\/background.js" } } |