DeepL Auto Converter

Enables easy DeepL translations

Co je DeepL Auto Converter?

DeepL Auto Converter je rozšíření Chrome vyvinuté tak215, a jeho hlavní funkcí je „Enables easy DeepL translations“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření DeepL Auto Converter

Stáhněte si soubory rozšíření DeepL Auto Converter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název DeepL Auto Converter DeepL Auto Converter
ID cpgdklpngibppeidaahbnbienjkiojel
Oficiální URL https://chromewebstore.google.com/detail/deepl-auto-converter/cpgdklpngibppeidaahbnbienjkiojel
Popis Enables easy DeepL translations
Velikost souboru 88.84 KB
Počet instalací 12
Aktuální Verze 1.0.0
Poslední Aktualizace 2021-10-26
Datum Vydání 2021-10-25
Vývojář tak215
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/tsuz/deepl-auto-converter
URL Stránky Nápovědy https://github.com/tsuz/deepl-auto-converter#support
Podporované Jazyky 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"
            ]
        }
    ]
}