DeepL Auto Converter

Enables easy DeepL translations

DeepL Auto Converter là gì?

DeepL Auto Converter là một tiện ích mở rộng Chrome được phát triển bởi tak215, và tính năng chính của nó là "Enables easy DeepL translations".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DeepL Auto Converter

Tải xuống các tệp mở rộng DeepL Auto Converter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DeepL Auto Converter DeepL Auto Converter
ID cpgdklpngibppeidaahbnbienjkiojel
URL Chính Thức https://chromewebstore.google.com/detail/deepl-auto-converter/cpgdklpngibppeidaahbnbienjkiojel
Mô tả Enables easy DeepL translations
Kích Thước Tệp 88.84 KB
Số Lần Cài Đặt 12
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-10-26
Ngày Phát Hành 2021-10-25
Nhà Phát Triển tak215
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tsuz/deepl-auto-converter
URL Trang Trợ Giúp https://github.com/tsuz/deepl-auto-converter#support
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}