NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Intercom UX improvements // @version 0.2 // @author You // @match https://app.intercom.com/* // @icon https://www.google.com/s2/favicons?domain=intercom.com // @grant none // @licence MIT // @updateURL https://openuserjs.org/meta/vonox7/Intercom_UX_improvements.meta.js // @downloadURL https://openuserjs.org/install/vonox7/Intercom_UX_improvements.user.js // ==/UserScript== (function() { 'use strict'; let style = document.createElement("style"); style.innerHTML = ".inbox2__command-k-modal-size { width: 940px; max-height: 600px;}" document.body.appendChild(style); })();