Firestore Utils
Modify firestore millis to human readable dates
什麼是Firestore Utils?
Firestore Utils是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Modify firestore millis to human readable dates”。
擴展截圖
下載Firestore Utils擴展crx文件
下載Firestore Utils擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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!
擴展基本資訊
名稱 | Firestore Utils |
ID | oebknnjfpdekbaalhncaifcddmeijlkn |
官方網址 | https://chromewebstore.google.com/detail/firestore-utils/oebknnjfpdekbaalhncaifcddmeijlkn |
簡介 | Modify firestore millis to human readable dates |
檔案大小 | 17.05 KB |
安裝次數 | 21 |
目前版本 | 0.1.1 |
更新時間 | 2020-03-26 |
上架時間 | 2020-03-25 |
開發者 | Unknown |
付費類型 | free |
支援的語言 | 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" } } |