Airflow Lifunf

This intents to help poor engineers to use Airflow!

Co je Airflow Lifunf?

Airflow Lifunf je rozšíření Chrome vyvinuté lucas.lmmf, a jeho hlavní funkcí je „This intents to help poor engineers to use Airflow!“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Airflow Lifunf

Stáhněte si soubory rozšíření Airflow Lifunf ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Airflow Lifunf Airflow Lifunf
ID eloabhccocaamibhganmeogabcenidfa
Oficiální URL https://chromewebstore.google.com/detail/airflow-lifunf/eloabhccocaamibhganmeogabcenidfa
Popis This intents to help poor engineers to use Airflow!
Velikost souboru 396 KB
Počet instalací 71
Aktuální Verze 1.1.1
Poslední Aktualizace 2020-02-16
Datum Vydání 2020-02-15
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář lucas.lmmf
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/LucasMMota/airflow-lifunf-extension
Podporované Jazyky 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"
            ]
        }
    ]
}