Airflow Lifunf

This intents to help poor engineers to use Airflow!

Airflow Lifunf là gì?

Airflow Lifunf là một tiện ích mở rộng Chrome được phát triển bởi lucas.lmmf, và tính năng chính của nó là "This intents to help poor engineers to use Airflow!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Airflow Lifunf

Tải xuống các tệp mở rộng Airflow Lifunf dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Airflow Lifunf Airflow Lifunf
ID eloabhccocaamibhganmeogabcenidfa
URL Chính Thức https://chromewebstore.google.com/detail/airflow-lifunf/eloabhccocaamibhganmeogabcenidfa
Mô tả This intents to help poor engineers to use Airflow!
Kích Thước Tệp 396 KB
Số Lần Cài Đặt 71
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2020-02-16
Ngày Phát Hành 2020-02-15
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển lucas.lmmf
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/LucasMMota/airflow-lifunf-extension
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}