DeepL Auto Converter

Enables easy DeepL translations

Wat is DeepL Auto Converter?

DeepL Auto Converter is een Chrome-extensie ontwikkeld door tak215, en de belangrijkste functie is "Enables easy DeepL translations".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie DeepL Auto Converter

Download DeepL Auto Converter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam DeepL Auto Converter DeepL Auto Converter
ID cpgdklpngibppeidaahbnbienjkiojel
Officiële URL https://chromewebstore.google.com/detail/deepl-auto-converter/cpgdklpngibppeidaahbnbienjkiojel
Beschrijving Enables easy DeepL translations
Bestandsgrootte 88.84 KB
Aantal Installaties 12
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-10-26
Publicatiedatum 2021-10-25
Ontwikkelaar tak215
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/tsuz/deepl-auto-converter
Help Pagina-URL https://github.com/tsuz/deepl-auto-converter#support
Ondersteunde Talen 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"
            ]
        }
    ]
}