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
官方網址 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"
        }
    ]
}