Open Translator
Quick access to Google Translate
什么是Open Translator?
Open Translator是由artar9404开发的Chrome扩展程序,该扩展的主要功能是“Quick access to Google Translate”。
扩展截图
下载Open Translator扩展crx文件
下载Open Translator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Provides quick access to Google Translate, allowing you to immediately translate selected text from the current webpage to another language.
Features:
* Select to translate
* Reverse translation
* Smart language pair recognition
* Possibility to use as standalone window
* Open source https://github.com/tarcode-apps/open-translator 扩展基本信息
| 名称 | |
| ID | cgllihjilejnolgcflldbmjdkjgdgfaa |
| 官方URL | https://chromewebstore.google.com/detail/open-translator/cgllihjilejnolgcflldbmjdkjgdgfaa |
| 简介 | Quick access to Google Translate |
| 文件大小 | 237 KB |
| 安装次数 | 715 |
| 当前版本 | 1.4 |
| 更新时间 | 2022-06-03 |
| 上架时间 | 2021-11-16 |
| 评分 | 4.75/5 共4次评分 |
| 开发者 | artar9404 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/tarcode-apps/open-translator |
| 支持的语言 | en,ru,uk |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "1.4",
"author": "Artem Tarasov",
"description": "__MSG_appDescription__",
"homepage_url": "https:\/\/github.com\/tarcode-apps\/open-translator",
"default_locale": "en",
"permissions": [
"storage",
"activeTab",
"contextMenus"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_security_policy": {
"extension_pages": "default-src 'self'; style-src 'self' 'unsafe-hashes' 'sha256-2FkMoYIfUwhaMVsbQnfoAJc8+Qzt0TC1GWOTrODFyNE='; connect-src https:\/\/translate.googleapis.com"
},
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_end",
"all_frames": true,
"js": [
"content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "__MSG_appTitle__"
},
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Q",
"mac": "MacCtrl+Shift+Q"
},
"description": "__MSG_openShortcut__"
},
"translate_page": {
"suggested_key": {
"default": "Alt+Q",
"mac": "Alt+Shift+Q"
},
"description": "__MSG_translatePage__"
}
}
} | |