Metercon

Live value converter

Cos'è Metercon?

Metercon è un'estensione di Chrome sviluppata da Igor Novikov, e la sua funzione principale è "Live value converter".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Metercon

Scarica i file di estensione Metercon in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Metercon Metercon
ID kcgihdenhomlcaoakbdgecdlnbfmlnhl
URL Ufficiale https://chromewebstore.google.com/detail/metercon/kcgihdenhomlcaoakbdgecdlnbfmlnhl
Descrizione Live value converter
Dimensione del File 16.01 KB
Conteggio Installazioni 11
Versione Corrente 0.1
Ultimo Aggiornamento 2016-03-07
Data di Pubblicazione 2016-03-07
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore Igor Novikov
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}