Intento Translator

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

什麼是Intento Translator?

Intento Translator是由https://inten.to開發的Chrome擴展程式,該擴展的主要功能是“Translate web page from one language to another using the best-of-breed Machine Translation.”。

擴展截圖

screenshot
screenshot
screenshot

下載Intento Translator擴展crx文件

下載Intento Translator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Intento Translator Intento Translator
ID ofmfoeohdhdgcakhdcegeiljlgammpjf
官方網址 https://chromewebstore.google.com/detail/intento-translator/ofmfoeohdhdgcakhdcegeiljlgammpjf
簡介 Translate web page from one language to another using the best-of-breed Machine Translation.
檔案大小 96.41 KB
安裝次數 864
目前版本 1.4.4
更新時間 2023-05-20
上架時間 2020-06-26
評分 3.64/5 共 11 次評分
開發者 https://inten.to
電子郵箱 [email protected]
付費類型 free
擴展官網 https://inten.to
說明頁面URL https://inten.to/support
隱私政策頁面URL https://inten.to/privacy
支援的語言 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"
}