Translate

划词,英译汉

什么是Translate?

Translate是由Tobin开发的Chrome扩展程序,该扩展的主要功能是“划词,英译汉”。

扩展截图

screenshot

下载Translate扩展crx文件

下载Translate扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        划词,英译汉
fork from https://github.com/ververcpp/ChaZD                    

扩展基本信息

名称 Translate Translate
ID gjecifjlnonophalblkfhkhfammonacl
官方URL https://chrome.google.com/webstore/detail/translate/gjecifjlnonophalblkfhkhfammonacl
简介 划词,英译汉
文件大小 53 KB
安装次数 117
当前版本 1.0.0
更新时间 2019-08-31
上架时间 2019-08-31
评分 4.00/5 共1次评分
开发者 Tobin
电子邮箱 [email protected]
付费类型 free
支持的语言 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Translate",
    "version": "1.0.0",
    "description": "\u5212\u8bcd\uff0c\u82f1\u8bd1\u6c49",
    "permissions": [
        "https:\/\/dict.youdao.com\/*",
        "https:\/\/fanyi.youdao.com\/*",
        "http:\/\/dict.youdao.com\/*",
        "http:\/\/fanyi.youdao.com\/*",
        "http:\/\/dict.xyuu.com.cn\/*",
        "http:\/\/*.shanbay.com\/*",
        "contextMenus",
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "public\/js\/utility.min.js",
            "public\/js\/background.min.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "public\/css\/inPage.min.css"
            ],
            "js": [
                "public\/js\/utility.min.js",
                "public\/js\/selection.min.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icons\/icon16.png"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    }
}