Right Click Translate
Right Click to translate selected text into a new Tab using Google Translate
什么是Right Click Translate?
Right Click Translate是由ndingar33开发的Chrome扩展程序,该扩展的主要功能是“Right Click to translate selected text into a new Tab using Google Translate”。
扩展截图
下载Right Click Translate扩展crx文件
下载Right Click Translate扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | piojkjkndneggfaibepkmabjnkjlhlmk |
| 官方URL | https://chromewebstore.google.com/detail/right-click-translate/piojkjkndneggfaibepkmabjnkjlhlmk |
| 简介 | Right Click to translate selected text into a new Tab using Google Translate |
| 文件大小 | 75 KB |
| 安装次数 | 102,715 |
| 当前版本 | 1.9.2 |
| 更新时间 | 2024-01-02 |
| 上架时间 | 2018-07-04 |
| 评分 | 4.25/5 共93次评分 |
| 开发者 | ndingar33 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://www.termsfeed.com/live/0bc575cf-9744-4219-93c1-62d012278d21 |
| 支持的语言 | 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"
}
} | |