Firestore Utils
Modify firestore millis to human readable dates
Cos'è Firestore Utils?
Firestore Utils è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Modify firestore millis to human readable dates".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Firestore Utils
Scarica i file di estensione Firestore Utils 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
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!
Informazioni di Base sull'Estensione
Nome | Firestore Utils |
ID | oebknnjfpdekbaalhncaifcddmeijlkn |
URL Ufficiale | https://chromewebstore.google.com/detail/firestore-utils/oebknnjfpdekbaalhncaifcddmeijlkn |
Descrizione | Modify firestore millis to human readable dates |
Dimensione del File | 17.05 KB |
Conteggio Installazioni | 21 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2020-03-26 |
Data di Pubblicazione | 2020-03-25 |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |