XTranslate

Easy translate text on web-pages

XTranslateคืออะไร?

XTranslate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Roman Esco และคุณลักษณะหลักของมันคือ "Easy translate text on web-pages"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Translate from 100+ foreign languages to your native directly on web-site you're reading or 
put text in the extension's drop-down window.

Features:
-----------
1) Many ways to get translation of text from the page:
- double-click on the word

select text and get immediate translation after one of:
- press hotkey defined in extension settings (**Alt+Shift+X** by default)
- click on the translate icon appeared near selected text
- click on selected text (turned off by default)
- just release mouse button (turned off by default)
- write text in input fields, mouse over it and press hotkey
- press context menu on the page and select item to get translation in place or translate whole page in new tab with specific translation vendor.

You can get even some information from images by putting mouse cursor over the image element and 
press hotkey (title or alt attributes will be used, if applicable).
This trick actually works with any element under mouse cursor. Just put mouse over item and press hotkey!

Translation in PDF files also works, but handling popup only possible from context menu.

2) Listen text-to-speech for all supported translation vendors
3) Adjust your unique design of the popup with translated text
4) Customize the ways of getting translations and other options in the settings
5) Insert any text in app's window (**Alt+X**  hotkey by default) and get translation of sentences or words with dictionary support
6) Save your favourite translations as quick bookmarks in history
7) View and edit history of translations

Available translation vendors:
-----------
* Google - http://translate.google.com/
* Yandex - http://translate.yandex.com/
* Bing - https://www.bing.com/translator
* DeepL - https://www.deepl.com/translator (free subscription limits: up to 500 000 chars/month)                    

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

ชื่อ XTranslate XTranslate
ID gfgpkepllngchpmcippidfhmbhlljhoo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/xtranslate/gfgpkepllngchpmcippidfhmbhlljhoo
คำอธิบาย Easy translate text on web-pages
ขนาดไฟล์ 4.26 MB
จำนวนการติดตั้ง 60,000
เวอร์ชันปัจจุบัน 3.0.5
อัปเดตครั้งล่าสุด 2024-02-27
วันที่เผยแพร่ 2020-06-09
คะแนน 4.49/5 รวมทั้งหมด 1484 คะแนน
ผู้พัฒนา Roman Esco
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ixrock/XTranslate
URL หน้านโยบายความเป็นส่วนตัว https://github.com/ixrock/XTranslate/blob/master/privacy-policy.md
ภาษาที่รองรับ de,en,vi,tr,sk,sr,ru,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "XTranslate",
    "description": "__MSG_short_description__",
    "version": "3.0.5",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "assets\/icons\/16.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_popup": "options.html?page=translate",
        "default_icon": {
            "19": "assets\/icons\/48.png",
            "38": "assets\/icons\/48.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+X"
            }
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "user-script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.*"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "tts",
        "storage",
        "unlimitedStorage",
        "contextMenus",
        "activeTab"
    ]
}