Automatic imperial to metric convertion BETA

Automatically convert imperial units to metric units on all websites

什么是Automatic imperial to metric convertion BETA?

Automatic imperial to metric convertion BETA是由esprimo开发的Chrome扩展程序,该扩展的主要功能是“Automatically convert imperial units to metric units on all websites”。

扩展截图

screenshot
screenshot

下载Automatic imperial to metric convertion BETA扩展crx文件

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

扩展使用说明

                        Automatically convert imperial units to metric units on all websites. Example of how a conversion would look:
"It's 12 miles to the library"
would be converted to:
"It's 12 miles (19.31km) to the library"

No tracking. Plugin in beta, code at:
https://github.com/esprimo/imperial-to-metric-chrome-extension                    

扩展基本信息

名称 Automatic imperial to metric convertion BETA Automatic imperial to metric convertion BETA
ID ggidgjeiboeedjjabheimgdkolnpaoik
官方URL https://chromewebstore.google.com/detail/automatic-imperial-to-met/ggidgjeiboeedjjabheimgdkolnpaoik
简介 Automatically convert imperial units to metric units on all websites
文件大小 11.41 KB
安装次数 393
当前版本 0.2.1
更新时间 2015-12-29
上架时间 2015-12-29
评分 2.94/5 共18次评分
开发者 esprimo
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Automatic imperial to metric convertion BETA",
    "version": "0.2.1",
    "description": "Automatically convert imperial units to metric units on all websites",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}