Google Translate Right Click
Add a context menu item to translate for selected text at Google Translate.
什么是Google Translate Right Click?
Google Translate Right Click是由https://sites.google.com/site/tientx开发的Chrome扩展程序,该扩展的主要功能是“Add a context menu item to translate for selected text at Google Translate.”。
扩展截图
下载Google Translate Right Click扩展crx文件
下载Google Translate Right Click扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Support multi-language via Google Translate
扩展基本信息
名称 | Google Translate Right Click |
ID | blbkkgcankcmdleleianggnfooalbjof |
官方URL | https://chromewebstore.google.com/detail/google-translate-right-cl/blbkkgcankcmdleleianggnfooalbjof |
简介 | Add a context menu item to translate for selected text at Google Translate. |
文件大小 | 29.05 KB |
安装次数 | 1,442 |
当前版本 | 0.83 |
更新时间 | 2020-07-14 |
上架时间 | 2020-06-28 |
评分 | 4.50/5 共10次评分 |
开发者 | https://sites.google.com/site/tientx |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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 } |