MultiTranslate

Translate highlighted text

什么是MultiTranslate?

MultiTranslate是由Jannis开发的Chrome扩展程序,该扩展的主要功能是“Translate highlighted text”。

扩展截图

screenshot

下载MultiTranslate扩展crx文件

下载MultiTranslate扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension is not related to DeepL, Google nor Microsoft.

How to translate text:
- Mark some text and click on the icon in the upper right corner or
- Select some text, right click and select the disired service in the context menu

Please note that this addon does not work on chrome-internal pages and chrome.google.com                    

扩展基本信息

名称 MultiTranslate MultiTranslate
ID ggfeeabglcmjoaokkomijmbaekfmeocc
官方URL https://chrome.google.com/webstore/detail/multitranslate/ggfeeabglcmjoaokkomijmbaekfmeocc
简介 Translate highlighted text
文件大小 68.59 KB
安装次数 703
当前版本 2.2.0
更新时间 2020-04-07
上架时间 2020-04-06
评分 3.00/5 共2次评分
开发者 Jannis
电子邮箱 [email protected]
付费类型 free
支持的语言 de,en,fr,nl,es,it,pl,pt-BR,pt-PT,ru,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "2.2.0",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "64": "64.png",
        "96": "96.png",
        "128": "128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*\/*",
        "contextMenus",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            },
            "description": "Opens DeepL to translate text"
        }
    }
}