DeepL opener

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

什么是DeepL opener?

DeepL opener是由teahat_dev开发的Chrome扩展程序,该扩展的主要功能是“Page translation, document translation, display the translation results on PDF using DeepL API (Unofficial)”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载DeepL opener扩展crx文件

下载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"
            }
        }
    }
}