Intento Translator

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

Intento Translatorคืออะไร?

Intento Translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://inten.to และคุณลักษณะหลักของมันคือ "Translate web page from one language to another using the best-of-breed Machine Translation."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Intento Translator

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
}