DeepL Translate

DeepL translate for Chrome

DeepL Translateคืออะไร?

DeepL Translate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://royli.dev และคุณลักษณะหลักของมันคือ "DeepL translate for Chrome"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DeepL Translate

ดาวน์โหลดไฟล์ส่วนขยาย DeepL Translate ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        利用 DeepL 接口翻译网页。

使用方法:https://github.com/geekdada/a-translator-chrome-extension

== 特性 ==

1. 支持收费和免费接口;
2. 支持配置腾讯云 OCR 进行文字识别;

注意:您需要自己购买 DeepL API 使用权限。                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DeepL Translate DeepL Translate
ID bpcbgnkijachkbknbhjmijehipcphndd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/deepl-translate/bpcbgnkijachkbknbhjmijehipcphndd
คำอธิบาย DeepL translate for Chrome
ขนาดไฟล์ 1.72 MB
จำนวนการติดตั้ง 747
เวอร์ชันปัจจุบัน 0.4.2
อัปเดตครั้งล่าสุด 2023-02-25
วันที่เผยแพร่ 2021-02-16
คะแนน 4.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://royli.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://royli.dev/
URL หน้าช่วยเหลือ https://royli.dev/
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DeepL Translate",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "128": "icon-128.png"
        },
        "default_title": "DeepL Translate"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "contentScript.bundle.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
    ],
    "commands": {
        "open_application": {
            "description": "\u6253\u5f00\u5e94\u7528",
            "suggested_key": {
                "default": "Ctrl+Shift+W",
                "mac": "MacCtrl+Command+W"
            }
        },
        "toggle_ocr": {
            "description": "\u5f00\u542f OCR \u8bc6\u522b",
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "MacCtrl+Command+E"
            }
        }
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "DeepL translate for Chrome",
    "version": "0.4.2"
}