Intento Translator

Translate web page from one language to another using the best-of-breed Machine Translation.

What is Intento Translator?

Intento Translator is a Chrome extension developed by https://inten.to, and its main feature is "Translate web page from one language to another using the best-of-breed Machine Translation.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Intento Translator Extension CRX File

Download Intento Translator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Intento MT Hub provides access to 20+ machine translation systems, plus custom models, smart routing mechanisms, and a variety of tweaking abilities for pre- and post-processing.
This plugin allows you to benefit from the Intento MT Hub magic right in the Chrome browser. Get instant website translations with best-of-breed AI technologies.
This extension requires a commercial API key for Intento MT Hub. Please get one from https://console.inten.to                    

Extension Basic Information

Name Intento Translator Intento Translator
ID ofmfoeohdhdgcakhdcegeiljlgammpjf
Official URL https://chromewebstore.google.com/detail/intento-translator/ofmfoeohdhdgcakhdcegeiljlgammpjf
Description Translate web page from one language to another using the best-of-breed Machine Translation.
File Size 96.41 KB
Installation Count 864
Current Version 1.4.4
Last Updated 2023-05-20
Publish Date 2020-06-26
Rating 3.64/5 Total 11 Ratings
Developer https://inten.to
Email [email protected]
Payment Type free
Extension Website https://inten.to
Help Page URL https://inten.to/support
Privacy Policy Page URL https://inten.to/privacy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Intento Translator",
    "short_name": "Intento Translator",
    "description": "Translate web page from one language to another using the best-of-breed Machine Translation.",
    "author": "Intento, Inc.",
    "manifest_version": 3,
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "background",
        "unlimitedStorage",
        "storage",
        "contextMenus",
        "notifications",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/api.inten.to\/"
    ],
    "action": {
        "default_title": "Intento Translator",
        "default_popup": "popup.html",
        "default_icon": "intento-128.png"
    },
    "icons": {
        "128": ".\/intento-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "intento-48.png"
            ],
            "matches": [],
            "extension_ids": []
        }
    ],
    "content_security_policy": {
        "object-src": "self"
    },
    "commands": {
        "translate": {
            "suggested_key": {
                "default": "Ctrl+M"
            },
            "description": "Translate"
        },
        "translate_back": {
            "suggested_key": {
                "default": "Shift+Alt+M"
            },
            "description": "Translate back"
        },
        "show_original": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Show original"
        },
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            }
        }
    },
    "version": "1.4.4"
}