Translate Selected Text 2
Translate selected text with Google Translator
Translate Selected Text 2คืออะไร?
Translate Selected Text 2 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alexander Simkin และคุณลักษณะหลักของมันคือ "Translate selected text with Google Translator"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Translate Selected Text 2
ดาวน์โหลดไฟล์ส่วนขยาย Translate Selected Text 2 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is the extension that allows you to translate text selected on any page and even more - it adds toolbar button that you can use for an easy access to the Google Transator. Actually it is a rewrited fork of the https://chrome.google.com/webstore/detail/translate-selected-text/fbimffnjoeobhjhochngikepgfejjmgj .
- Why fork?
First of all to satisfy my requirements of the extension and very long answers on my proposals during which I was able to rewrite whole extension and add the required features.
- Why it asks for a permissions to change 'translate.google.com'?
Because original translator interface are overloaded with unnecessary components(header/footer) that doesn't need for quick translations imho. And more - with new 'chrome panels' existing of header/footer lead to scrolling every time translator was opened.
- I found a bug or want some feature!
Feel free to send issue or even more - pull request on github: https://github.com/sashasimkin/translate-selected-text2 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | pkmlbekmippmpokjnleaehkfhelgplli |
| URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/translate-selected-text-2/pkmlbekmippmpokjnleaehkfhelgplli |
| คำอธิบาย | Translate selected text with Google Translator |
| ขนาดไฟล์ | 175 KB |
| จำนวนการติดตั้ง | 2,605 |
| เวอร์ชันปัจจุบัน | 0.2.2 |
| อัปเดตครั้งล่าสุด | 2016-02-08 |
| วันที่เผยแพร่ | 2016-02-08 |
| คะแนน | 3.88/5 รวมทั้งหมด 17 คะแนน |
| ผู้พัฒนา | Alexander Simkin |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_app_name__",
"short_name": "__MSG_app_short_name__",
"description": "__MSG_app_description__",
"version": "0.2.2",
"permissions": [
"contextMenus",
"storage",
"notifications",
"*:\/\/translate.google.com\/*"
],
"icons": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"64": "images\/icon-64.png",
"128": "images\/icon-128.png",
"256": "images\/icon-256.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content_scripts\/propagate_selection.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": {
"19": "images\/icon-19.png",
"38": "images\/icon-38.png"
}
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+T"
}
}
},
"options_page": "options.html",
"default_locale": "en"
} | |