TranslateLocally for Chrome

TranslateLocally for Chrome is a webextension that enables local and private translation of web pages.

Τι είναι το TranslateLocally for Chrome;

Το TranslateLocally for Chrome είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Private.mt, και η κύρια λειτουργία του είναι "TranslateLocally for Chrome is a webextension that enables local and private translation of web pages.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης TranslateLocally for Chrome

Λήψη αρχείων επέκτασης TranslateLocally for Chrome σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        TranslateLocally brings state-of-the-art machine translation to your own, private device. Unlike other translators, it does not rely on the cloud. Your text never leaves your device. And it also works just as fast when you have a bad or no connection to the internet.

Features:
- Translate all text on a website (including highly dynamic sites like Youtube, Twitter)
- Translate selected text only (Select text and right-click "Translate selection")
- Help you translate text in forms (Right-click a form field and click "Type to translate…")

This extension for Chrome integrates the features of TranslateLocally in your browser. It works without the TranslateLocally desktop application[1], but if you have it installed, TranslateLocally for Chrome will work even faster and be able to access the translation language models with the desktop app.

This extension is free to use for personal use.

TranslateLocally is one of the products to come out of the Bergamot project[2]. The Bergamot Project Consortium is coordinated by the University of Edinburgh with partners Charles University in Prague, the University of Sheffield, University of Tartu, and Mozilla. This project has received funding from the 🇪🇺 European Union’s Horizon 2020 research and innovation programme under grant agreement No 825303.

[1]: https://translatelocally.com
[2]: https://browser.mt                    

Βασικές Πληροφορίες Επέκτασης

Όνομα TranslateLocally for Chrome TranslateLocally for Chrome
ID fenadanhohmncaemmgiklcpkeooflaeg
Επίσημο URL https://chromewebstore.google.com/detail/translatelocally-for-chro/fenadanhohmncaemmgiklcpkeooflaeg
Περιγραφή TranslateLocally for Chrome is a webextension that enables local and private translation of web pages.
Μέγεθος Αρχείου 2.53 MB
Αριθμός Εγκαταστάσεων 54
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2023-08-24
Ημερομηνία Δημοσίευσης 2023-08-24
Προγραμματιστής Private.mt
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jelmervdl/translatelocally-web-ext/issues
URL της Σελίδας Πολιτικής Απορρήτου https://private.mt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TranslateLocally for Chrome",
    "version": "0.0.1",
    "permissions": [
        "contextMenus",
        "tabs",
        "storage",
        "nativeMessaging",
        "offscreen"
    ],
    "host_permissions": [
        "https:\/\/translatelocally.com\/models.json",
        "https:\/\/data.statmt.org\/bergamot\/models\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "SelectionTranslation.css",
                "InPageTranslation.css"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "incognito": "spanning",
    "action": {
        "default_icon": {
            "16": "\/assets\/icons\/translateLocally_logo.16.png",
            "32": "\/assets\/icons\/translateLocally_logo.32.png",
            "64": "\/assets\/icons\/translateLocally_logo.64.png"
        },
        "default_title": "Translation available",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "48": "\/assets\/icons\/translateLocally_logo.48.png",
        "96": "\/assets\/icons\/translateLocally_logo.96.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "assets\/fonts\/FlowBlock-Regular.woff2",
                "assets\/fonts\/FlowCircular-Regular.woff2",
                "assets\/fonts\/FlowRounded-Regular.woff2",
                "OutboundTranslation.css",
                "InPageTranslation.css",
                "SelectionTranslation.css"
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/jelmervdl\/translatelocally-web-ext",
    "background": {
        "service_worker": "background-script.js"
    },
    "description": "TranslateLocally for Chrome is a webextension that enables local and private translation of web pages."
}