DeepL Auto Converter

Enables easy DeepL translations

Что такое DeepL Auto Converter?

DeepL Auto Converter - это расширение Chrome, разработанное tak215, и его основная функция - "Enables easy DeepL translations".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Translates foreign text using DeepL. Open sourced at https://github.com/tsuz/deepl-auto-converter                    

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

Название DeepL Auto Converter DeepL Auto Converter
ID cpgdklpngibppeidaahbnbienjkiojel
Официальный URL https://chromewebstore.google.com/detail/deepl-auto-converter/cpgdklpngibppeidaahbnbienjkiojel
Описание Enables easy DeepL translations
Размер файла 88.84 KB
Количество установок 12
Текущая Версия 1.0.0
Последнее Обновление 2021-10-26
Дата публикации 2021-10-25
Разработчик tak215
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/tsuz/deepl-auto-converter
URL страницы помощи https://github.com/tsuz/deepl-auto-converter#support
Поддерживаемые языки ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DeepL Auto Converter",
    "description": "Enables easy DeepL translations",
    "version": "1.0.0",
    "browser_action": {
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/backgroundPage.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ]
}