Airflow Lifunf

This intents to help poor engineers to use Airflow!

O que é Airflow Lifunf?

Airflow Lifunf é uma extensão do Chrome desenvolvida por lucas.lmmf, e sua principal característica é "This intents to help poor engineers to use Airflow!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Airflow Lifunf

Baixe arquivos de extensão Airflow Lifunf 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

                        ### What?
This is a chrome extension that enables some features on Airflow:

- Auto-Refresh on Airflow DAG's page. This helps a lot when monitoring/testing a task execution. Now you can drink your cup of coffee beer while Airflow run the Dag you're trying to run again.

- Error highlighting to help easily find them on the logs.

- Creates links on the logs                    

Informações Básicas da Extensão

Nome Airflow Lifunf Airflow Lifunf
ID eloabhccocaamibhganmeogabcenidfa
URL Oficial https://chromewebstore.google.com/detail/airflow-lifunf/eloabhccocaamibhganmeogabcenidfa
Descrição This intents to help poor engineers to use Airflow!
Tamanho do Arquivo 396 KB
Contagem de Instalações 71
Versão Atual 1.1.1
Última Atualização 2020-02-16
Data de Publicação 2020-02-15
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor lucas.lmmf
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/LucasMMota/airflow-lifunf-extension
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Airflow Lifunf",
    "version": "1.1.1",
    "description": "This intents to help poor engineers to use Airflow!",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "logoaf.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/admin\/airflow\/*"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "css": [
                "estilera.css"
            ]
        }
    ]
}