InstaMetric

Converts customary units on Instacart into metric

Co to jest InstaMetric?

InstaMetric to rozszerzenie Chrome opracowane przez martin, a jego główną funkcją jest „Converts customary units on Instacart into metric”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia InstaMetric

Pobierz pliki rozszerzeń InstaMetric w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa InstaMetric InstaMetric
ID agnehkmmogfljboljnbojbdohffjjpgc
Oficjalny URL https://chromewebstore.google.com/detail/instametric/agnehkmmogfljboljnbojbdohffjjpgc
Opis Converts customary units on Instacart into metric
Rozmiar pliku 11.02 KB
Liczba instalacji 27
Aktualna Wersja 1.0.8
Ostatnia Aktualizacja 2023-04-01
Data Publikacji 2016-06-26
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper martin
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}