InstaMetric

Converts customary units on Instacart into metric

Hvad er InstaMetric?

InstaMetric er en Chrome-udvidelse udviklet af martin, og dens hovedfunktion er "Converts customary units on Instacart into metric".

Udvidelsesskærmbilleder

screenshot

Download InstaMetric-udvidelses-CRX-fil

Download InstaMetric-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        A somewhat hacky Chrome extension to convert imperial/customary units on Instacart into metric values.                    

Grundlæggende oplysninger om udvidelsen

Navn InstaMetric InstaMetric
ID agnehkmmogfljboljnbojbdohffjjpgc
Officiel URL https://chromewebstore.google.com/detail/instametric/agnehkmmogfljboljnbojbdohffjjpgc
Beskrivelse Converts customary units on Instacart into metric
Filstørrelse 11.02 KB
Antal Installationer 27
Nuværende Version 1.0.8
Senest Opdateret 2023-04-01
Udgivelsesdato 2016-06-26
Bedømmelse 4.00/5 Samlet 1 Bedømmelser
Udvikler martin
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "InstaMetric",
    "description": "Converts customary units on Instacart into metric",
    "version": "1.0.8",
    "homepage_url": "https:\/\/github.com\/mprobst\/instametric",
    "icons": {
        "48": "res\/icon48.png",
        "128": "res\/icon128.png"
    },
    "permissions": [
        "https:\/\/www.instacart.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instacart.com\/*"
            ],
            "js": [
                "metrify.js"
            ]
        }
    ]
}