NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Improved New Relic // @namespace http://tampermonkey.net/ // @version 0.1 // @require http://code.jquery.com/jquery-1.12.4.min.js // @description try to take over the world! // @author You // @include *://insights.newrelic.com/* // @grant none // ==/UserScript== function maximize_ace_editor() { if ($(".ace_editor.ace_autocomplete").length > 0) { $(".ace_editor.ace_autocomplete").css("width", "800px"); } else { window.setTimeout(maximize_ace_editor, 1000); } } (function() { maximize_ace_editor(); })();