DeepL Translator

Hover over highlighted sentences and words to translate them with DeepL.

Что такое DeepL Translator?

DeepL Translator - это расширение Chrome, разработанное Chris Lo, и его основная функция - "Hover over highlighted sentences and words to translate them with DeepL.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения DeepL Translator

Скачайте файлы расширений DeepL Translator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The extension will expedite transferring text highlighted in your current browser tab to a background tab running DeepL's powerful and accurate translation tool. The results are then displayed above the highlighted text. The source and destination languages can be preset via the extension's settings.                    

Основная информация о расширении

Название DeepL Translator DeepL Translator
ID kgljlkdpcelbbmdfilomhgjaaefofkfh
Официальный URL https://chrome.google.com/webstore/detail/deepl-translator/kgljlkdpcelbbmdfilomhgjaaefofkfh
Описание Hover over highlighted sentences and words to translate them with DeepL.
Размер файла 168 KB
Количество установок 11,889
Текущая Версия 0.0.7
Последнее Обновление 2021-05-01
Дата публикации 2021-01-19
Рейтинг 3.33/5 Всего 15 оценок
Разработчик Chris Lo
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://chrislo.ca/deepl
URL страницы политики конфиденциальности https://codeforthought.com/privacy
Поддерживаемые языки de,en,fr,nl,da,et,es,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,bg,ru,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "0.0.7",
    "description": "__MSG_extDescription__",
    "homepage_url": "https:\/\/chrislo.ca\/deepl",
    "manifest_version": 2,
    "default_locale": "en",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "deepl-background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "deepl-bridge.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "deepl-page.js",
        "deepl-translator.js",
        "deepl-loading.gif"
    ]
}