Firestore Utils
Modify firestore millis to human readable dates
Vad är Firestore Utils?
Firestore Utils är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Modify firestore millis to human readable dates".
Tilläggsskärmbilder
Ladda ner Firestore Utils-förlängningens CRX-fil
Ladda ner Firestore Utils-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | Firestore Utils |
ID | oebknnjfpdekbaalhncaifcddmeijlkn |
Officiell webbadress | https://chromewebstore.google.com/detail/firestore-utils/oebknnjfpdekbaalhncaifcddmeijlkn |
Beskrivning | Modify firestore millis to human readable dates |
Filstorlek | 17.05 KB |
Antal Installationer | 21 |
Aktuell Version | 0.1.1 |
Senast Uppdaterad | 2020-03-26 |
Publiceringsdatum | 2020-03-25 |
Utvecklare | Unknown |
Betalningssätt | free |
Stödda Språk | 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" } } |