Firestore Utils
Modify firestore millis to human readable dates
Firestore Utils là gì?
Firestore Utils là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Modify firestore millis to human readable dates".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Firestore Utils
Tải xuống các tệp mở rộng Firestore Utils dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Firestore Utils |
ID | oebknnjfpdekbaalhncaifcddmeijlkn |
URL Chính Thức | https://chromewebstore.google.com/detail/firestore-utils/oebknnjfpdekbaalhncaifcddmeijlkn |
Mô tả | Modify firestore millis to human readable dates |
Kích Thước Tệp | 17.05 KB |
Số Lần Cài Đặt | 21 |
Phiên Bản Hiện Tại | 0.1.1 |
Cập Nhật Lần Cuối | 2020-03-26 |
Ngày Phát Hành | 2020-03-25 |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |