I want to be able to see four groups, because that is the usual number I add to new profiles.
// ==UserScript==
// @name Edit/Add: Increase Groups list height to fit four groups
// @namespace https://github.com/nate-kean/
// @version 20251012
// @description I want to be able to see four groups, because that is the usual number I add to new profiles.
// @author Nate Kean
// @match https://jamesriver.fellowshiponego.com/members/edit/*
// @match https://jamesriver.fellowshiponego.com/members/add*
// @icon https://www.google.com/s2/favicons?sz=64&domain=fellowshiponego.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
document.head.insertAdjacentHTML("beforeend", `
<style id="nates-extra-group-list-height">
#memberEditGroupHolder {
max-height: 30rem !important;
}
</style>
`);
})();