Greasy Fork

Greasy Fork is available in English.

Nate's Day Button

CSS common for a few scripts that put an autofill button next to a date

当前为 2025-11-04 提交的版本,查看 最新版本

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/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>
    `);
})();