Web Translate

Web Translate is easy to use translator for your Web browser / Thunderbird!

Was ist Web Translate?

Web Translate ist eine Chrome-Erweiterung, die von https://fastaddons.com entwickelt wurde, und ihr Hauptmerkmal ist "Web Translate is easy to use translator for your Web browser / Thunderbird!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Web Translate-Erweiterungs-CRX-Datei herunterladen

Laden Sie Web Translate-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Available also for your Thunderbird:
https://addons.thunderbird.net/addon/web_translate/

Features:
- Translate selected text (from context menu)
- Whole page translation
- Dark mode!

Supported translation providers:
- Google Translate
- Microsoft Translator
- DeepL
- Яндекс Переводчик
- Google 翻译
- 百度翻译 (Baidu)

Support independent developer!
Juraj Mäsiar - https://Blog.Mozilla.org/Addons/2020/06/15/Friend-Of-Add-ons-Juraj-Masiar/

I'm addon developer since 2016 and my goal is to build powerful extensions for your web-browser to make you more productive.
If you think I'm doing a good job, please donate :)
- Ko-Fi.com: https://ko-fi.com/fastaddons
- PayPal.Me: https://paypal.me/fastaddons/
- Liberapay: https://liberapay.com/juraj.masiar/
- Patreon.com: https://www.patreon.com/fastaddons
- BuyMeACoffee.com: https://www.buymeacoffee.com/fastaddons
- Bank transfer using IBAN:: SK6283300000002701131205, BIC/SWIFT: FIOZSKBAXXX

Your donation is my only income!
Thank you for supporting my work!

Privacy Policy:
https://github.com/fastaddons/WebTranslate/blob/master/PRIVACY_POLICY.md

Recently added features:
https://addons.mozilla.org/addon/web_translate/versions/                    

Grundlegende Informationen zur Erweiterung

Name Web Translate Web Translate
ID gjfljooinclelkhmgegielehekdbmigm
Offizielle URL https://chromewebstore.google.com/detail/web-translate/gjfljooinclelkhmgegielehekdbmigm
Beschreibung Web Translate is easy to use translator for your Web browser / Thunderbird!
Dateigröße 1.88 MB
Installationsanzahl 11,647
Aktuelle Version 4.9
Letztes Update 2023-07-14
Veröffentlichungsdatum 2020-10-14
Bewertung 3.33/5 Insgesamt 6 Bewertungen
Entwickler https://fastaddons.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://fastaddons.com/
Hilfeseite URL https://github.com/fastaddons/WebTranslate/issues
URL der Datenschutzrichtlinien-Seite https://github.com/fastaddons/privacy_policy
Unterstützte Sprachen de,en,fr,sk,cs,uk,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "4.9",
    "author": "Juraj M\u00e4siar",
    "default_locale": "en",
    "name": "__MSG_app_name__",
    "description": "__MSG_app_desc__",
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "service_worker": "background.loader.js"
    },
    "action": {
        "default_icon": {
            "128": "128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "editor\/editor.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+Q"
            },
            "description": "Open pop-up window."
        },
        "translate_page": {
            "suggested_key": {
                "default": "Alt+Shift+W"
            },
            "description": "Translate current page."
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/translate.google.com\/*",
                "https:\/\/translate.google.cn\/*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content_scripts\/empty_page_detection.js"
            ]
        },
        {
            "matches": [
                "https:\/\/translate.google.com\/*",
                "https:\/\/translate.google.cn\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "content_scripts\/google_block.js"
            ]
        },
        {
            "matches": [
                "https:\/\/bing.com\/*",
                "https:\/\/www.bing.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "content_scripts\/bing_block.js"
            ]
        },
        {
            "matches": [
                "https:\/\/deepl.com\/*",
                "https:\/\/www.deepl.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "content_scripts\/deepl_block.js"
            ]
        },
        {
            "matches": [
                "https:\/\/translate.yandex.ru\/*",
                "https:\/\/translate.yandex.com\/*",
                "https:\/\/www.translate.yandex.ru\/*",
                "https:\/\/www.translate.yandex.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "content_scripts\/yandex_block.js"
            ]
        },
        {
            "matches": [
                "https:\/\/fanyi.baidu.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "content_scripts\/baidu_block.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "editor\/editor.css",
                "editor\/editor.html",
                "editor\/editor.js",
                "utils\/svg\/resize-corner.svg"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab",
        "scripting",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        ""
    ],
    "incognito": "split"
}