Metercon

Live value converter

什么是Metercon?

Metercon是由Igor Novikov开发的Chrome扩展程序,该扩展的主要功能是“Live value converter”。

扩展截图

screenshot

下载Metercon扩展crx文件

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

扩展使用说明

                        Convert feet to meters and meters to feet.

This extension will automatically convert length values in Metric system to Imperial system and vise versa.

Go to Metercon options to switch the conversion type.

The converted value will be added after the original value between the symbols: '<' and'>'.

Special thanks to Ilya Kaplan for major bug fix and syntax improvements.

More conversion types might be available in the future, depending on reviews.

Any review will be appreciated.                    

扩展基本信息

名称 Metercon Metercon
ID kcgihdenhomlcaoakbdgecdlnbfmlnhl
官方URL https://chromewebstore.google.com/detail/metercon/kcgihdenhomlcaoakbdgecdlnbfmlnhl
简介 Live value converter
文件大小 16.01 KB
安装次数 11
当前版本 0.1
更新时间 2016-03-07
上架时间 2016-03-07
评分 4.00/5 共1次评分
开发者 Igor Novikov
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Metercon",
    "version": "0.1",
    "manifest_version": 2,
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "description": "Live value converter",
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "convert.js"
            ],
            "run_at": "document_end"
        }
    ]
}