Metercon

Live value converter

Metercon क्या है?

Metercon Igor Novikov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Live value converter"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Metercon एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}