Metercon

Live value converter

Metercon là gì?

Metercon là một tiện ích mở rộng Chrome được phát triển bởi Igor Novikov, và tính năng chính của nó là "Live value converter".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Metercon

Tải xuống các tệp mở rộng Metercon dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Metercon Metercon
ID kcgihdenhomlcaoakbdgecdlnbfmlnhl
URL Chính Thức https://chromewebstore.google.com/detail/metercon/kcgihdenhomlcaoakbdgecdlnbfmlnhl
Mô tả Live value converter
Kích Thước Tệp 16.01 KB
Số Lần Cài Đặt 11
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2016-03-07
Ngày Phát Hành 2016-03-07
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Igor Novikov
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}