Skip to content

Instantly share code, notes, and snippets.

@cosenal
Created July 30, 2018 16:55
Show Gist options
  • Save cosenal/e7ab556dd82af1e102774bd121eb6610 to your computer and use it in GitHub Desktop.
Save cosenal/e7ab556dd82af1e102774bd121eb6610 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name This ain't a place for devops
// @namespace http://tampermonkey.net/
// @version 0.1
// @author Alessandro
// @match http://<airflow-instance-url-here>/admin/
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('td:contains("devops")').parent().hide();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment