// ==UserScript== // @name 网页小时钟 // @namespace https://weirick.github.io // @version 1.0 // @description 在网页右上角显示当前时间 // @author RCWei // @license GPL-3.0 // @match *://*/* // @run-at document-end // @require https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js // @downloadURL none // ==/UserScript== let clockHTML = '
'; let timeBox = document.createElement('div'); timeBox.innerHTML = clockHTML; $('html').append(timeBox); setInterval(() => { let now = new Date(), hour = now.getHours(), minute = now.getMinutes(); if (hour < 10) hour = '0' + hour; if (minute < 10) minute = '0' + minute; $('#clock').text(hour + ":" + minute) ; }, 1000);