Created
July 30, 2018 16:55
-
-
Save cosenal/e7ab556dd82af1e102774bd121eb6610 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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