Automatic imperial to metric convertion BETA

Automatically convert imperial units to metric units on all websites

Cos'è Automatic imperial to metric convertion BETA?

Automatic imperial to metric convertion BETA è un'estensione di Chrome sviluppata da esprimo, e la sua funzione principale è "Automatically convert imperial units to metric units on all websites".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Automatic imperial to metric convertion BETA

Scarica i file di estensione Automatic imperial to metric convertion BETA 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

                        Automatically convert imperial units to metric units on all websites. Example of how a conversion would look:
"It's 12 miles to the library"
would be converted to:
"It's 12 miles (19.31km) to the library"

No tracking. Plugin in beta, code at:
https://github.com/esprimo/imperial-to-metric-chrome-extension                    

Informazioni di Base sull'Estensione

Nome Automatic imperial to metric convertion BETA Automatic imperial to metric convertion BETA
ID ggidgjeiboeedjjabheimgdkolnpaoik
URL Ufficiale https://chromewebstore.google.com/detail/automatic-imperial-to-met/ggidgjeiboeedjjabheimgdkolnpaoik
Descrizione Automatically convert imperial units to metric units on all websites
Dimensione del File 11.41 KB
Conteggio Installazioni 393
Versione Corrente 0.2.1
Ultimo Aggiornamento 2015-12-29
Data di Pubblicazione 2015-12-29
Valutazione 2.94/5 Totale 18 Valutazioni
Sviluppatore esprimo
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Automatic imperial to metric convertion BETA",
    "version": "0.2.1",
    "description": "Automatically convert imperial units to metric units on all websites",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}