DeepL Auto Converter

Enables easy DeepL translations

ما هو DeepL Auto Converter؟

DeepL Auto Converter هو إضافة Chrome تم تطويرها بواسطة tak215، والميزة الرئيسية لها هي "Enables easy DeepL translations".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة DeepL Auto Converter

قم بتنزيل ملفات الامتداد DeepL Auto Converter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم DeepL Auto Converter DeepL Auto Converter
ID cpgdklpngibppeidaahbnbienjkiojel
عنوان URL الرسمي https://chromewebstore.google.com/detail/deepl-auto-converter/cpgdklpngibppeidaahbnbienjkiojel
الوصف Enables easy DeepL translations
حجم الملف 88.84 KB
عدد التثبيتات 12
النسخة الحالية 1.0.0
آخر تحديث 2021-10-26
تاريخ النشر 2021-10-25
المطور tak215
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/tsuz/deepl-auto-converter
عنوان صفحة المساعدة https://github.com/tsuz/deepl-auto-converter#support
اللغات المدعومة 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"
            ]
        }
    ]
}