Mouse Translator
Mouse Translator
什么是Mouse Translator?
Mouse Translator是由Abel Liu开发的Chrome扩展程序,该扩展的主要功能是“Mouse Translator”。
扩展截图
下载Mouse Translator扩展crx文件
下载Mouse Translator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
指词翻译,使用鼠标快速查看单词解释。 扩展基本信息
| 名称 | |
| ID | makaijldnmppobcafpijpndkkihhanhh |
| 官方URL | https://chromewebstore.google.com/detail/mouse-translator/makaijldnmppobcafpijpndkkihhanhh |
| 简介 | Mouse Translator |
| 文件大小 | 18.39 KB |
| 安装次数 | 53 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2017-02-17 |
| 上架时间 | 2017-02-16 |
| 开发者 | Abel Liu |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Mouse Translator",
"description": "Mouse Translator",
"version": "1.0.1",
"options_page": "popup.html",
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html",
"default_title": "Mouse Translator"
},
"content_scripts": [
{
"js": [
"selector.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"activeTab",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |