Firestore Utils

Modify firestore millis to human readable dates

O que é Firestore Utils?

Firestore Utils é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Modify firestore millis to human readable dates".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Firestore Utils

Baixe arquivos de extensão Firestore Utils no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Firestore Utils Firestore Utils
ID oebknnjfpdekbaalhncaifcddmeijlkn
URL Oficial https://chromewebstore.google.com/detail/firestore-utils/oebknnjfpdekbaalhncaifcddmeijlkn
Descrição Modify firestore millis to human readable dates
Tamanho do Arquivo 17.05 KB
Contagem de Instalações 21
Versão Atual 0.1.1
Última Atualização 2020-03-26
Data de Publicação 2020-03-25
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}