Greasy Fork is available in English.

ServiceNow Taller Code Merger

Makes the Code Comparison tool in ServiceNow taller

// ==UserScript==
// @name         ServiceNow Taller Code Merger
// @version      0.3
// @description  Makes the Code Comparison tool in ServiceNow taller
// @author       jgriffithSN
// @match        https://*.service-now.com/*merge_form_*_version*.do*
// @grant        GM_addStyle
// @namespace https://greasyfork.org/users/387107
// @license GNU GPLv3
// ==/UserScript==

const style = `
.CodeMirror-merge, .CodeMirror-merge .CodeMirror { height: 80vh !important; }
`;

(function() {
    'use strict';
    GM_addStyle(style);
})();