DeepL opener

Page translation, document translation, display the translation results on PDF using DeepL API (Unofficial)

DeepL openerคืออะไร?

DeepL opener เป็นส่วนขยายของ Chrome ที่พัฒนาโดย teahat_dev และคุณลักษณะหลักของมันคือ "Page translation, document translation, display the translation results on PDF using DeepL API (Unofficial)"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        You can replace the texts that you want to translate with translation results from DeepL (deepl.com) API keeping the original style.
On pdf, this extension displays a frame of translated sentences.
You can also use the DeepL API to translate document files.

【Text Translation】
・ Layout-oriented replacement mode (Page translation)
The text in the selected frame will be translated "while maintaining the original layout".

・ PDF mode
You can display the translation result on PDF.
The translation result can be moved freely by dragging and dropping, and the frame can be deleted by right-clicking.

・Text-oriented replacement mode
Right-click on the translation result to replace the original text, and right-click again to switch the display to the translation result.

・Transition mode (API_KEY not required)
Right-click on the selected text, and click `DeepL:selected text` to access "https://www.deepl.com/translator#ja/en/selected_text".


【ShortCuts】
Several modes can be executed by shortcuts.
These shortcuts can be edited from chrome://extensions/shortcuts
- Layout-oriented replacement mode: Ctrl(⌘)+Shift+L
- Text-oriented replacement mode: Ctrl(⌘)+Shift+K twice within 1 second


【Documents translation】
You can translate ".docx, .pptx, .pdf, .txt, .htm, .html" documents while maintaining the layout.


【Glossaries】
You can create your own glossary.
Registering academic terms or technical terms that are not translated properly may improve translation accuracy.
※ The available language pair is limited.


【Options】
To change the settings, please right click the icon in the right-hand corner and select `Options`.   

- Target language
You can change the language of the translated text by changing here.  
-  Translation icon
When "Enable", an icon will be displayed on the web page.  
- HoverText
When "Enable", the original text is displayed under the translation (and vice versa) on text-oriented replacement mode.  


【Support languages】
It supports 26 languages including Japanese, English, Chinese, German, and so on.
Please check `target_lang` on https://www.deepl.com/docs-api/translating-text/request/


【Disclaimer】
Please check 
https://github.com/T3aHat/DeepLopener#%E5%85%8D%E8%B2%AC%E4%BA%8B%E9%A0%85disclaimer
before using this extension.
We are not responsible for any disadvantages caused by this extension.

To find out more, visit my blog.
https://t3ahat.hateblo.jp/entry/How_to_use_DeepLopener

※To use this extension, API_KEY of DeepL (Free and Pro API are available!) is required. 
※You need to log in to Chrome and sync turns on.
※Browsers other than Chrome are not supported.
※Unofficial exntension                    

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

ชื่อ DeepL opener DeepL opener
ID almdndhiblbhbnoaakhgefcpmbaoljde
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/deepl-opener/almdndhiblbhbnoaakhgefcpmbaoljde
คำอธิบาย Page translation, document translation, display the translation results on PDF using DeepL API (Unofficial)
ขนาดไฟล์ 261 KB
จำนวนการติดตั้ง 8,000
เวอร์ชันปัจจุบัน 1.3.0
อัปเดตครั้งล่าสุด 2022-07-11
วันที่เผยแพร่ 2020-12-09
คะแนน 3.54/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา teahat_dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://deeplopener.ml/DeepLopener/
URL หน้าช่วยเหลือ https://github.com/T3aHat/DeepLopener
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DeepL opener",
    "version": "1.3.0",
    "host_permissions": [
        ""
    ],
    "permissions": [
        "storage",
        "identity",
        "identity.email",
        "contextMenus",
        "scripting"
    ],
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icon24.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "run_at": "document_start"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "jquery-3.5.1.min.js",
                "contents.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "commands": {
        "LayoutOrientedCommand": {
            "description": "Layout-oriented mode",
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "windows": "Ctrl+Shift+L",
                "mac": "Command+Shift+L",
                "chromeos": "Ctrl+Shift+L",
                "linux": "Ctrl+Shift+L"
            }
        },
        "TextOrientedCommand": {
            "description": "Text-oriented mode",
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "windows": "Ctrl+Shift+K",
                "mac": "Command+Shift+K",
                "chromeos": "Ctrl+Shift+K",
                "linux": "Ctrl+Shift+K"
            }
        }
    }
}