DeepL opener

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

Vad är DeepL opener?

DeepL opener är en Chrome-tillägg utvecklad av teahat_dev, och dess huvudfunktion är "Page translation, document translation, display the translation results on PDF using DeepL API (Unofficial)".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner DeepL opener-förlängningens CRX-fil

Ladda ner DeepL opener-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn DeepL opener DeepL opener
ID almdndhiblbhbnoaakhgefcpmbaoljde
Officiell webbadress https://chrome.google.com/webstore/detail/deepl-opener/almdndhiblbhbnoaakhgefcpmbaoljde
Beskrivning Page translation, document translation, display the translation results on PDF using DeepL API (Unofficial)
Filstorlek 261 KB
Antal Installationer 8,000
Aktuell Version 1.3.0
Senast Uppdaterad 2022-07-11
Publiceringsdatum 2020-12-09
Betyg 3.54/5 Totalt 13 Betyg
Utvecklare teahat_dev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://deeplopener.ml/DeepLopener/
Hjälpsida URL https://github.com/T3aHat/DeepLopener
Stödda Språk 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"
            }
        }
    }
}