Depth Translator for DeepL

An Assistant to Translate Selected Texts with DeepL

Depth Translator for DeepL란 무엇입니까?

Depth Translator for DeepL은(는) Faisal Ahmed에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An Assistant to Translate Selected Texts with DeepL"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Depth Translator for DeepL 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Depth Translator is an assistant extension for DeepL. 

You can invoke the translation in 3 ways:
1. By selecting texts, a popup icon would appear beside your mouse pointer - when you click the icon, you'll be redirected to DeepL in a new tab.
2. You can also select text and do the same from the context menu item.
3. The extension icon beside the address bar can also be clicked to translate selected text without leaving your current tab.

Features: 
1. One click translation.
2. Option to disable the icon popup.
3. Option to set a preferred language.
4. Option to invoke the icon only when alt or option key is pressed.
5. No annoying/persistent cookie confirmations in the mini preview window.

The extension requires access to all sites in order to present the icon inside every webpage. You can disable this feature from the settings.

If you have feedback or feature request, please send me an to email [email protected].
I hope this extension makes your browsing a little easier.

* This extension or the developer is not affiliated with DeepL. I wanted to make this mainly for myself.                    

확장 프로그램 기본 정보

이름 Depth Translator for DeepL Depth Translator for DeepL
ID ngbebejjbijmijmhbbpkllcnjpgkjikl
공식 URL https://chromewebstore.google.com/detail/depth-translator-for-deep/ngbebejjbijmijmhbbpkllcnjpgkjikl
설명 An Assistant to Translate Selected Texts with DeepL
파일 크기 15.49 KB
설치 횟수 1,447
현재 버전 0.9.0
최근 업데이트 2020-10-20
출시 날짜 2020-10-20
평점 3.91/5 총 11 개의 평점
개발자 Faisal Ahmed
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Depth Translator for DeepL",
    "description": "An Assistant to Translate Selected Texts with DeepL",
    "author": "Faisal Ahmed",
    "short_name": "Depth Translator",
    "version": "0.9.0",
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "content_security_policy": "default-src 'self' https:\/\/www.deepl.com\/",
    "background": {
        "scripts": [
            "context.js"
        ]
    },
    "icons": {
        "128": "deepl.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "content.css"
            ],
            "exclude_matches": [
                "https:\/\/www.deepl.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "deepl40.png"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "defaut_icon": "deepl.png"
    }
}