CSS common for a few scripts that put an autofill button next to a date
이 스크립트는 직접 설치하는 용도가 아닙니다. 다른 스크립트에서 메타 지시문 // @require https://update.greasyfork.org/scripts/554804/1689525/Nate%27s%20Day%20Button.js을(를) 사용하여 포함하는 라이브러리입니다.
// ==UserScript==
// @name Nate's Day Button
// @namespace https://github.com/nate-kean/
// @version 2025.11.4
// @description CSS common for a few scripts that put an autofill button next to a date
// @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
// ==/UserScript==
(function() {
document.head.insertAdjacentHTML("beforeend", `
<style id="nates-day-button-css">
.nates-day-button {
font-weight: 600;
border: none;
font-size: 13px;
padding: 0;
}
</style>
`);
})();