Intento Translator

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

Intento Translator là gì?

Intento Translator là một tiện ích mở rộng Chrome được phát triển bởi https://inten.to, và tính năng chính của nó là "Translate web page from one language to another using the best-of-breed Machine Translation.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Intento Translator

Tải xuống các tệp mở rộng Intento Translator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Intento Translator Intento Translator
ID ofmfoeohdhdgcakhdcegeiljlgammpjf
URL Chính Thức https://chromewebstore.google.com/detail/intento-translator/ofmfoeohdhdgcakhdcegeiljlgammpjf
Mô tả Translate web page from one language to another using the best-of-breed Machine Translation.
Kích Thước Tệp 96.41 KB
Số Lần Cài Đặt 864
Phiên Bản Hiện Tại 1.4.4
Cập Nhật Lần Cuối 2023-05-20
Ngày Phát Hành 2020-06-26
Đánh Giá 3.64/5 Tổng số 11 Đánh Giá
Nhà Phát Triển https://inten.to
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://inten.to
URL Trang Trợ Giúp https://inten.to/support
URL Trang Chính Sách Bảo Mật https://inten.to/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
}