Unitify
Convert units to your preferred tongue, in-page.
什么是Unitify?
Unitify是由Steve Pike开发的Chrome扩展程序,该扩展的主要功能是“Convert units to your preferred tongue, in-page.”。
扩展截图
下载Unitify扩展crx文件
下载Unitify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Unitify translates units and measurements in webpages in-place, so that you don't have to think about converting them yourself. 扩展基本信息
| 名称 | |
| ID | amhbhaikpableefmhhongikpbefdcgmf |
| 官方URL | https://chromewebstore.google.com/detail/unitify/amhbhaikpableefmhhongikpbefdcgmf |
| 简介 | Convert units to your preferred tongue, in-page. |
| 文件大小 | 63.65 KB |
| 安装次数 | 38 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2013-03-26 |
| 上架时间 | 2013-03-26 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Steve Pike |
| 付费类型 | free |
| 扩展官网 | http://github.com/stringfellow/unitify |
| 帮助页面URL | http://github.com/stringfellow/unitify/issues |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Unitify",
"description": "Convert units to your preferred tongue, in-page.",
"version": "1.0.1",
"options_page": "options.html",
"browser_action": {
"default_icon": "globe.png",
"default_popup": "options.html"
},
"icons": {
"128": "globe.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"jquery-1.9.1.min.js",
"underscore-min.js",
"unitify.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage"
]
} | |