Inspect and view changes in Airflow Task Notifier source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Airflow Task Notifier",
"description": "This extension notifies you on Airflow task results.",
"homepage_url": "https://github.com/alexyalunin/airflow-task-notifier",
"version": "1.0.2",
"applications": {
"gecko": {
"id": "airflow-task-notifier@alexander.yalunin",
"strict_min_version": "46.0"
}
},
"browser_action": {
"default_icon": "img/icon.png",
"default_popup": "popup.html",
"default_title": "Airflow Task Notifier"
},
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"background": {
"scripts": [
"js/services.js",
"js/background.js"
]
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"<all_urls>",
"storage",
"notifications"
]
}