Measurements units converter

Measurement system convert tool

Cos'è Measurements units converter?

Measurements units converter è un'estensione di Chrome sviluppata da viktorpatraboi, e la sua funzione principale è "Measurement system convert tool".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Measurements units converter

Scarica i file di estensione Measurements units converter 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

                        Plugin for automatic conversion of measurements units from the metric system to imperial and vice versa.

Converts units in page automatically.

Supports converting the following:
- length(metric <-> imperial)
- weight(metric <-> imperial)
- temperature(Celsius <-> Fahrenheit)
- volume (metric <-> imperial)                    

Informazioni di Base sull'Estensione

Nome Measurements units converter Measurements units converter
ID ldnkgcpeljjhpfkpapknhjhnninfelga
URL Ufficiale https://chromewebstore.google.com/detail/measurements-units-conver/ldnkgcpeljjhpfkpapknhjhnninfelga
Descrizione Measurement system convert tool
Dimensione del File 15.53 KB
Conteggio Installazioni 19
Versione Corrente 0.1
Ultimo Aggiornamento 2023-07-10
Data di Pubblicazione 2022-02-13
Sviluppatore viktorpatraboi
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/okedo
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Measurements units converter",
    "description": "Measurement system convert tool",
    "version": "0.1",
    "manifest_version": 3,
    "icons": {
        "16": ".\/assets\/icon16.png",
        "48": ".\/assets\/icon48.png",
        "128": ".\/assets\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}