Translator

Translates selected text into opted language.

Translatorคืออะไร?

Translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.naveenbhat.in และคุณลักษณะหลักของมันคือ "Translates selected text into opted language."

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

screenshot
screenshot
screenshot

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

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

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

                        By using this extension you can easily translate specific part of a page or specific word on the page to another language. The usage is quite simple...

    1. Select a text on the page.
    2. Click on the Translator icon.

That's it and you are done!

Use the dropdown list to change your preferred language. It remembers your choice for the next usage.

If you are supposed to translate texts frequently on some page, then you can make use of the option `In-line Translation`, which translates the text immediately as you are done with selection. Please use this feature only, if absolutely required as it increases the load on server.

It uses http://translate.google.com/ for the translation.                    

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

ชื่อ Translator Translator
ID hllpgofookedglcfhdimjhaahggbnlbe
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/translator/hllpgofookedglcfhdimjhaahggbnlbe
คำอธิบาย Translates selected text into opted language.
ขนาดไฟล์ 70.09 KB
จำนวนการติดตั้ง 2,000
เวอร์ชันปัจจุบัน 1.1.8
อัปเดตครั้งล่าสุด 2017-04-26
วันที่เผยแพร่ 2017-04-26
คะแนน 4.00/5 รวมทั้งหมด 27 คะแนน
ผู้พัฒนา http://www.naveenbhat.in
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.naveenbhat.in/2012/06/translator-extension-for-chrome.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Translator",
    "version": "1.1.8",
    "description": "Translates selected text into opted language.",
    "browser_action": {
        "default_title": "Translates selected text into opted language",
        "default_icon": "Images\/favicon.png",
        "default_popup": "Popup.html"
    },
    "icons": {
        "16": "Images\/16.png",
        "48": "Images\/48.png",
        "128": "Images\/128.png"
    },
    "permissions": [
        "tabs",
        "chrome:\/\/favicon\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "Javascript\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "Javascript\/References\/jquery-2.1.4.min.js",
                "Javascript\/content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "TopBar.html",
        "Javascript\/TopBar.js",
        "Javascript\/References\/jquery-2.1.4.min.js"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}