Firestore Utils

Modify firestore millis to human readable dates

Co to jest Firestore Utils?

Firestore Utils to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Modify firestore millis to human readable dates”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Firestore Utils

Pobierz pliki rozszerzeń Firestore Utils 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

                        Saving dates in Firestore is a pain. You can save it as a raw Date object, but that's not BigQuery compatible. You can save it as raw epoch milliseconds, but that's not very human readable. This chrome extension automatically converts fields ending in "Millis" to ISO date formats, without modifying it - so while the value stays the same, you can more easily understand firestore values!                    

Podstawowe informacje o rozszerzeniu

Nazwa Firestore Utils Firestore Utils
ID oebknnjfpdekbaalhncaifcddmeijlkn
Oficjalny URL https://chromewebstore.google.com/detail/firestore-utils/oebknnjfpdekbaalhncaifcddmeijlkn
Opis Modify firestore millis to human readable dates
Rozmiar pliku 17.05 KB
Liczba instalacji 21
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2020-03-26
Data Publikacji 2020-03-25
Deweloper Unknown
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": "Firestore Utils",
    "version": "0.1.1",
    "description": "Modify firestore millis to human readable dates",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/console.firebase.google.com\/*"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "https:\/\/console.firebase.google.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}