系统时间
// ==UserScript==
// @name 系统时间
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.3
// @description npm包每秒返回当前系统时间 格式:2022 年 2 月 5 日 星期六 18 : 11 : 14
// @author 张仨
// @match https://bbs.tampermonkey.net.cn
// @grant none
// @require https://cdn.jsdelivr.net/npm/zuifan-zhangsan@1.0.3/time.js
// ==/UserScript==
//油猴中文网主页时间读秒模式
setInterval(() => {
document.querySelectorAll('.bm_h span.y')[1].innerHTML = getTime();
}, 1000);