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
公式URL 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
Eメール [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"
}