MultiTranslate

Translate highlighted text

MultiTranslate란 무엇입니까?

MultiTranslate은(는) Jannis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Translate highlighted text"입니다.

확장 프로그램 스크린샷

screenshot

MultiTranslate 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}