Firestore Utils

Modify firestore millis to human readable dates

Firestore Utils क्या है?

Firestore Utils Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Modify firestore millis to human readable dates"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Firestore Utils एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}