Metercon

Live value converter

Metercon란 무엇입니까?

Metercon은(는) Igor Novikov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Live value converter"입니다.

확장 프로그램 스크린샷

screenshot

Metercon 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}