Airflow Lifunf

This intents to help poor engineers to use Airflow!

Cos'è Airflow Lifunf?

Airflow Lifunf è un'estensione di Chrome sviluppata da lucas.lmmf, e la sua funzione principale è "This intents to help poor engineers to use Airflow!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Airflow Lifunf

Scarica i file di estensione Airflow Lifunf in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        ### 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                    

Informazioni di Base sull'Estensione

Nome Airflow Lifunf Airflow Lifunf
ID eloabhccocaamibhganmeogabcenidfa
URL Ufficiale https://chromewebstore.google.com/detail/airflow-lifunf/eloabhccocaamibhganmeogabcenidfa
Descrizione This intents to help poor engineers to use Airflow!
Dimensione del File 396 KB
Conteggio Installazioni 71
Versione Corrente 1.1.1
Ultimo Aggiornamento 2020-02-16
Data di Pubblicazione 2020-02-15
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore lucas.lmmf
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/LucasMMota/airflow-lifunf-extension
Lingue Supportate 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"
            ]
        }
    ]
}