Chat Translator for DeepL

Translate YouTubeLive chats by DeepL API

Chat Translator for DeepLคืออะไร?

Chat Translator for DeepL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย teahat_dev และคุณลักษณะหลักของมันคือ "Translate YouTubeLive chats by DeepL API"

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

screenshot
screenshot
screenshot

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

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

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

                        This extension automatically rewrites YouTube chats with translation results using the DeepL API.
You will be able to easily communicate with foreign people in real time using the excellent translation algorithm of DeepL (https://www.deepl.com).

# Option settings
## Translate from
Chats in the language you select here will be translated.

## Translate into
The comments or chat will be translated into this language.

## Translation text length
Only text of the length specified here will be translated.
This setting prevents excessive use of the API by spam with long texts.

## Translate all chats
When selected, all text within the chat field will be translated even if the language of the text is mother tongue.
Otherwise, only text in the selected language on Translate from will be translated.

## Strict mode
When the active tab is changed, the translation will be paused.
When you come back to the tab, the translation will be resumed.

## Remove translating icon
When selected, the translating icon loading.gif won't be appeared.

## Remove author-photo, author-name
When selected, hide the user icon or user name in the chat field.

## Custom CSS
You can freely customize the display of the chat field by writing CSS 
code here.

## DeepL API KEY
Select your API_KEY's version Free or Pro and input your DeepL API_KEY here.

※To use this extension, you need API_KEY of DeepL. Also, you need to log in to Chrome and sync  turns on.

# Support languages
Please check `target_lang` on https://www.deepl.com/docs-api/translating-text/request/
"BG" - Bulgarian
"CS" - Czech
"DA" - Danish
"DE" - German
"EL" - Greek
"EN-GB" - English (British)
"EN-US" - English (American)
"ES" - Spanish
"ET" - Estonian
"FI" - Finnish
"FR" - French
"HU" - Hungarian
"IT" - Italian
"JA" - Japanese
"LT" - Lithuanian
"LV" - Latvian
"NL" - Dutch
"PL" - Polish
"PT-PT" - Portuguese (all Portuguese varieties excluding Brazilian Portuguese)
"PT-BR" - Portuguese (Brazilian)
"RO" - Romanian
"RU" - Russian
"SK" - Slovak
"SL" - Slovenian
"SV" - Swedish
"ZH" - Chinese

# Disclaimer  
Please check 
https://github.com/T3aHat/Chat_Translator_for_DeepL#%E5%85%8D%E8%B2%AC%E4%BA%8B%E9%A0%85disclaimer
before using this extension.                    

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

ชื่อ Chat Translator for DeepL Chat Translator for DeepL
ID fbmkdedikbcbkkeaofpenfncppepfnlo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chat-translator-for-deepl/fbmkdedikbcbkkeaofpenfncppepfnlo
คำอธิบาย Translate YouTubeLive chats by DeepL API
ขนาดไฟล์ 82.65 KB
จำนวนการติดตั้ง 957
เวอร์ชันปัจจุบัน 1.1.6
อัปเดตครั้งล่าสุด 2021-12-20
วันที่เผยแพร่ 2021-03-30
คะแนน 3.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา teahat_dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/T3aHat/Chat_Translator_for_DeepL
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chat Translator for DeepL",
    "version": "1.1.6",
    "permissions": [
        "storage",
        "identity",
        "identity.email"
    ],
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "loading.gif"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "run_at": "document_start"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.youtube.com\/live_chat*"
            ],
            "all_frames": true,
            "js": [
                "chat-translator.js"
            ]
        }
    ]
}