Firestore Utils
Modify firestore millis to human readable dates
ما هو Firestore Utils؟
Firestore Utils هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Modify firestore millis to human readable dates".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Firestore Utils
قم بتنزيل ملفات الامتداد Firestore Utils بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان URL الرسمي | 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" } } |