DeepL Auto Converter

Enables easy DeepL translations

Co to jest DeepL Auto Converter?

DeepL Auto Converter to rozszerzenie Chrome opracowane przez tak215, a jego główną funkcją jest „Enables easy DeepL translations”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia DeepL Auto Converter

Pobierz pliki rozszerzeń DeepL Auto Converter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa DeepL Auto Converter DeepL Auto Converter
ID cpgdklpngibppeidaahbnbienjkiojel
Oficjalny URL https://chromewebstore.google.com/detail/deepl-auto-converter/cpgdklpngibppeidaahbnbienjkiojel
Opis Enables easy DeepL translations
Rozmiar pliku 88.84 KB
Liczba instalacji 12
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-10-26
Data Publikacji 2021-10-25
Deweloper tak215
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/tsuz/deepl-auto-converter
Adres URL Strony Pomocy https://github.com/tsuz/deepl-auto-converter#support
Obsługiwane Języki 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"
            ]
        }
    ]
}