DeepL opener

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

Hvad er DeepL opener?

DeepL opener er en Chrome-udvidelse udviklet af teahat_dev, og dens hovedfunktion er "Page translation, document translation, display the translation results on PDF using DeepL API (Unofficial)".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download DeepL opener-udvidelses-CRX-fil

Download DeepL opener-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn DeepL opener DeepL opener
ID almdndhiblbhbnoaakhgefcpmbaoljde
Officiel URL https://chrome.google.com/webstore/detail/deepl-opener/almdndhiblbhbnoaakhgefcpmbaoljde
Beskrivelse Page translation, document translation, display the translation results on PDF using DeepL API (Unofficial)
Filstørrelse 261 KB
Antal Installationer 8,000
Nuværende Version 1.3.0
Senest Opdateret 2022-07-11
Udgivelsesdato 2020-12-09
Bedømmelse 3.54/5 Samlet 13 Bedømmelser
Udvikler teahat_dev
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://deeplopener.ml/DeepLopener/
Hjælpeside-URL https://github.com/T3aHat/DeepLopener
Understøttede Sprog 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"
            }
        }
    }
}