TransIt

让划词翻译更简单

TransItคืออะไร?

TransIt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย greatghoul และคุณลักษณะหลักของมันคือ "让划词翻译更简单"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        # TransIt

TransIt - 让划词翻译更简单

http://gdgxian.org/crx-transit/

## 功能列表

- 页面英文划词翻译 
- 连续对多个单词进行划词翻译
- 对超链接中的文本进行划词翻译
- 调整页面划词翻译结果显示的时间长短
- 适应更多的页面,包括 Iframe 嵌套
- 支持在窗口边缘和选词附近两种方式显示翻译结果
- 支持百度和有道翻译两种翻译服务

## 相关资源

- 更新历史 http://git.io/pz7B
- 项目主页 http://git.io/pz7K
- 问题和反馈 http://git.io/pz7M                    

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

ชื่อ TransIt TransIt
ID pfjipfdmbpbkcadkdpmacdcefoohagdc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/transit/pfjipfdmbpbkcadkdpmacdcefoohagdc
คำอธิบาย 让划词翻译更简单
ขนาดไฟล์ 516 KB
จำนวนการติดตั้ง 4,000
เวอร์ชันปัจจุบัน 1.6.6
อัปเดตครั้งล่าสุด 2018-02-05
วันที่เผยแพร่ 2018-02-05
คะแนน 4.56/5 รวมทั้งหมด 63 คะแนน
ผู้พัฒนา greatghoul
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://gdgxian.org/crx-transit/
URL หน้าช่วยเหลือ https://github.com/GDG-Xian/crx-transit/issues
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TransIt",
    "description": "\u8ba9\u5212\u8bcd\u7ffb\u8bd1\u66f4\u7b80\u5355",
    "version": "1.6.6",
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/event.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "img\/icon48.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/contentstyle.css"
            ],
            "js": [
                "js\/contentscript.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "notifications",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/fanyi.baidu.com\/basetrans",
        "http:\/\/cn.bing.com\/dict\/search",
        "http:\/\/cn.bing.com\/translator\/api\/Translate\/TranslateArray"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}