Google Translate Right Click
Add a context menu item to translate for selected text at Google Translate.
Wat is Google Translate Right Click?
Google Translate Right Click is een Chrome-extensie ontwikkeld door https://sites.google.com/site/tientx, en de belangrijkste functie is "Add a context menu item to translate for selected text at Google Translate.".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Translate Right Click
Download Google Translate Right Click-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Support multi-language via Google Translate
Basisinformatie over de Extensie
Naam | Google Translate Right Click |
ID | blbkkgcankcmdleleianggnfooalbjof |
Officiële URL | https://chromewebstore.google.com/detail/google-translate-right-cl/blbkkgcankcmdleleianggnfooalbjof |
Beschrijving | Add a context menu item to translate for selected text at Google Translate. |
Bestandsgrootte | 29.05 KB |
Aantal Installaties | 1,442 |
Huidige Versie | 0.83 |
Laatst Bijgewerkt | 2020-07-14 |
Publicatiedatum | 2020-06-28 |
Beoordeling | 4.50/5 Totaal 10 Beoordelingen |
Ontwikkelaar | https://sites.google.com/site/tientx |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |