Firestore Utils
Modify firestore millis to human readable dates
Was ist Firestore Utils?
Firestore Utils ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Modify firestore millis to human readable dates".
Erweiterungsscreenshots
Firestore Utils-Erweiterungs-CRX-Datei herunterladen
Laden Sie Firestore Utils-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Firestore Utils |
ID | oebknnjfpdekbaalhncaifcddmeijlkn |
Offizielle URL | https://chromewebstore.google.com/detail/firestore-utils/oebknnjfpdekbaalhncaifcddmeijlkn |
Beschreibung | Modify firestore millis to human readable dates |
Dateigröße | 17.05 KB |
Installationsanzahl | 21 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2020-03-26 |
Veröffentlichungsdatum | 2020-03-25 |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |