Airflow Lifunf

This intents to help poor engineers to use Airflow!

Airflow Lifunf란 무엇입니까?

Airflow Lifunf은(는) lucas.lmmf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This intents to help poor engineers to use Airflow!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Airflow Lifunf 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Airflow Lifunf Airflow Lifunf
ID eloabhccocaamibhganmeogabcenidfa
공식 URL https://chromewebstore.google.com/detail/airflow-lifunf/eloabhccocaamibhganmeogabcenidfa
설명 This intents to help poor engineers to use Airflow!
파일 크기 396 KB
설치 횟수 71
현재 버전 1.1.1
최근 업데이트 2020-02-16
출시 날짜 2020-02-15
평점 5.00/5 총 2 개의 평점
개발자 lucas.lmmf
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/LucasMMota/airflow-lifunf-extension
지원되는 언어 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"
            ]
        }
    ]
}