// ==UserScript== // @name 自动日期设置 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 自动设置今天日期 // @match http://call.changmujiayu.cn/web/2024/page/* // @match https://call.changmujiayu.cn/web/2024/page/* // ==/UserScript== (function() { 'use strict'; function init() { const date1 = document.getElementById('date1'); const date2 = document.getElementById('date2'); const btn = document.querySelector('.row .col-xl-1.col-md-6 button'); if (!date1 || !date2) return; const today = new Date().toISOString().split('T')[0]; date1.value = today; date2.value = today; } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', init); } else { init(); } })();