Metercon

Live value converter

Meterconคืออะไร?

Metercon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Igor Novikov และคุณลักษณะหลักของมันคือ "Live value converter"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Metercon

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}