Airflow Lifunf
This intents to help poor engineers to use Airflow!
Что такое Airflow Lifunf?
Airflow Lifunf - это расширение Chrome, разработанное lucas.lmmf, и его основная функция - "This intents to help poor engineers to use Airflow!".
Снимки экрана расширения
Скачать файл CRX расширения Airflow Lifunf
Скачайте файлы расширений Airflow Lifunf в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
### 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 |
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" ] } ] } |