(UI5) I find it difficult to write PLEG ‘code’ due to the tiny size of Vera’s popup window. I wrote a quick and dirty Tampermonkey script to make the dialog very large. Hopefully someone else finds this useful.
// ==UserScript==
// @name Vera mods
// @version 0.1
// @description enter something useful
// @author You
// @match http://192.168.1.xxx/* <-- your IP here
// @grant none
// ==/UserScript==
jQuery("body").prepend("<style> div.controls div.content { width: 1200px !important; background-color: white !important; height: initial !important; } div.cpanel_holder { top: 70px !important; } </style>");
jQuery("body").prepend("<style> a.Notes input { width: 400px !important; } </style>");
jQuery("body").prepend("<style> textarea.PLCTEXT { width: 690px !important; height: 100px !important; } </style>");