Airflow Lifunf
This intents to help poor engineers to use Airflow!
Vad är Airflow Lifunf?
Airflow Lifunf är en Chrome-tillägg utvecklad av lucas.lmmf, och dess huvudfunktion är "This intents to help poor engineers to use Airflow!".
Tilläggsskärmbilder
Ladda ner Airflow Lifunf-förlängningens CRX-fil
Ladda ner Airflow Lifunf-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
### 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 Grundläggande Information om Tillägg
| Namn | |
| ID | eloabhccocaamibhganmeogabcenidfa |
| Officiell webbadress | https://chromewebstore.google.com/detail/airflow-lifunf/eloabhccocaamibhganmeogabcenidfa |
| Beskrivning | This intents to help poor engineers to use Airflow! |
| Filstorlek | 396 KB |
| Antal Installationer | 71 |
| Aktuell Version | 1.1.1 |
| Senast Uppdaterad | 2020-02-16 |
| Publiceringsdatum | 2020-02-15 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | lucas.lmmf |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/LucasMMota/airflow-lifunf-extension |
| Stödda Språk | 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"
]
}
]
} | |