DeepL Translator

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

Co to jest DeepL Translator?

DeepL Translator to rozszerzenie Chrome opracowane przez Chris Lo, a jego główną funkcją jest „Hover over highlighted sentences and words to translate them with DeepL.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia DeepL Translator

Pobierz pliki rozszerzeń DeepL Translator 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa DeepL Translator DeepL Translator
ID kgljlkdpcelbbmdfilomhgjaaefofkfh
Oficjalny URL https://chrome.google.com/webstore/detail/deepl-translator/kgljlkdpcelbbmdfilomhgjaaefofkfh
Opis Hover over highlighted sentences and words to translate them with DeepL.
Rozmiar pliku 168 KB
Liczba instalacji 11,889
Aktualna Wersja 0.0.7
Ostatnia Aktualizacja 2021-05-01
Data Publikacji 2021-01-19
Ocena 3.33/5 Łącznie 15 Oceny
Deweloper Chris Lo
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://chrislo.ca/deepl
Adres URL Strony Polityki Prywatności https://codeforthought.com/privacy
Obsługiwane Języki 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"
    ]
}