Firestore Utils

Modify firestore millis to human readable dates

Firestore Utilsとは何ですか?

Firestore UtilsはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Modify firestore millis to human readable dates」です。

拡張機能のスクリーンショット

screenshot
screenshot

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 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"
    }
}