Hola Translator for Chrome

Translate Page and Text in Browser

Hola Translator for Chromeคืออะไร?

Hola Translator for Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DevelUA และคุณลักษณะหลักของมันคือ "Translate Page and Text in Browser"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Hola Translator for Chrome ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The new Hola Translator app allows you to translate both text and the whole pages in your web browser.When the extension is installing, a hotkey for calling appears in the browser, which allows you to translate texts very rapidly, without going to third-party pages and other applications.

The main advantage is an automatic system for determining the source text, which significantly simplifies and speeds up the translation process. You only need to select the necessary fragment of the page, and the extension will translate this particular passage without touching the rest of the text and advertising, which eliminates the need to read the entire text again.
If necessary, the application translates the whole page at your request.

More than 100 different languages ​​for translation, the full meaning of the translated words and the selection of synonyms allows you to get the most accurate and high-quality translation.

With the help of hotkeys, both the whole text and individual necessary fragments are translated.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hola Translator for Chrome Hola Translator for Chrome
ID hgdlbdfhokgghlojnkonhkcdlamolagk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hola-translator-for-chrom/hgdlbdfhokgghlojnkonhkcdlamolagk
คำอธิบาย Translate Page and Text in Browser
ขนาดไฟล์ 68.32 KB
จำนวนการติดตั้ง 1,025
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2023-12-13
วันที่เผยแพร่ 2021-09-27
คะแนน 4.83/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา DevelUA
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.0.1",
    "default_locale": "en",
    "permissions": [
        "contextMenus",
        "storage",
        ""
    ],
    "icons": {
        "16": "img\/[email protected]",
        "24": "img\/[email protected]",
        "32": "img\/[email protected]",
        "64": "img\/[email protected]",
        "128": "img\/[email protected]"
    },
    "background": {
        "page": "html\/background.html"
    },
    "options_page": "html\/options-page.html",
    "browser_action": {
        "default_title": "Hola Translator",
        "default_icon": {
            "128": "img\/status-bar.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content\/translator-text.js",
                "js\/content\/translator-page.js",
                "js\/content\/content-handlers.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "img\/holaIconWhite.svg",
        "img\/holaLogoBlack.svg",
        "img\/arrowDown.svg",
        "img\/crossButton.svg",
        "js\/libs\/jquery-3.6.0.min.js",
        "js\/modal\/modal.js",
        "js\/content\/translator-page-inject.js",
        "html\/modal.html"
    ],
    "commands": {
        "translate-text": {
            "suggested_key": {
                "default": "Ctrl+T",
                "mac": "MacCtrl+T"
            },
            "description": "__MSG_menuTranslateText__"
        },
        "translate-page": {
            "suggested_key": {
                "default": "Ctrl+P",
                "mac": "MacCtrl+P"
            },
            "description": "__MSG_menuTranslatePage__"
        }
    }
}