Binary translator
Translates Binary text on mouseover
什么是Binary translator?
Binary translator是由Zuyas开发的Chrome扩展程序,该扩展的主要功能是“Translates Binary text on mouseover”。
扩展截图
下载Binary translator扩展crx文件
下载Binary translator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | fddleocmcfjhifjcenaijiboiafeajej |
| 官方URL | https://chrome.google.com/webstore/detail/binary-translator/fddleocmcfjhifjcenaijiboiafeajej |
| 简介 | Translates Binary text on mouseover |
| 文件大小 | 55.49 KB |
| 安装次数 | 50 |
| 当前版本 | 0.0.3.53 |
| 更新时间 | 2015-07-31 |
| 上架时间 | 2015-07-31 |
| 评分 | 1.80/5 共5次评分 |
| 开发者 | Zuyas |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Binary translator",
"short_name": "btl",
"version": "0.0.3.53",
"description": "Translates Binary text on mouseover",
"icons": {
"16": "icon_128.png",
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.facebook.com\/*"
],
"js": [
"jquery.min.js",
"script.min.js",
"storage.js",
"zTip.js"
],
"css": [
"style.css",
"zTip.css"
]
}
],
"browser_action": {
"icons": [
"icon.png"
],
"default_icon": "icon.png",
"default_title": "Binary translator",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage"
]
} | |