tororadar remove email nag

:)

// ==UserScript==
// @name          tororadar remove email nag
// @namespace     danalec
// @description	  :)
// @include       https://app.tororadar.com.br/*
// @grant         none
// @require       https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @version       10.04.2018
// ==/UserScript==

this.$ = this.jQuery = jQuery.noConflict(true);
$(function() {
  $(document).bind('DOMNodeInserted',function(){
    $("#modalCadastroAnalises").hide();
    $(".modal-backdrop").hide();
  })
})();