DeepL opener

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

Co je DeepL opener?

DeepL opener je rozšíření Chrome vyvinuté teahat_dev, a jeho hlavní funkcí je „Page translation, document translation, display the translation results on PDF using DeepL API (Unofficial)“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření DeepL opener

Stáhněte si soubory rozšíření DeepL opener ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název DeepL opener DeepL opener
ID almdndhiblbhbnoaakhgefcpmbaoljde
Oficiální URL https://chrome.google.com/webstore/detail/deepl-opener/almdndhiblbhbnoaakhgefcpmbaoljde
Popis Page translation, document translation, display the translation results on PDF using DeepL API (Unofficial)
Velikost souboru 261 KB
Počet instalací 8,000
Aktuální Verze 1.3.0
Poslední Aktualizace 2022-07-11
Datum Vydání 2020-12-09
Hodnocení 3.54/5 Celkem 13 Hodnocení
Vývojář teahat_dev
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://deeplopener.ml/DeepLopener/
URL Stránky Nápovědy https://github.com/T3aHat/DeepLopener
Podporované Jazyky 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"
            }
        }
    }
}