DeepL Auto Converter

Enables easy DeepL translations

Vad är DeepL Auto Converter?

DeepL Auto Converter är en Chrome-tillägg utvecklad av tak215, och dess huvudfunktion är "Enables easy DeepL translations".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner DeepL Auto Converter-förlängningens CRX-fil

Ladda ner DeepL Auto Converter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn DeepL Auto Converter DeepL Auto Converter
ID cpgdklpngibppeidaahbnbienjkiojel
Officiell webbadress https://chromewebstore.google.com/detail/deepl-auto-converter/cpgdklpngibppeidaahbnbienjkiojel
Beskrivning Enables easy DeepL translations
Filstorlek 88.84 KB
Antal Installationer 12
Aktuell Version 1.0.0
Senast Uppdaterad 2021-10-26
Publiceringsdatum 2021-10-25
Utvecklare tak215
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/tsuz/deepl-auto-converter
Hjälpsida URL https://github.com/tsuz/deepl-auto-converter#support
Stödda Språk 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"
            ]
        }
    ]
}