Clock millisecondi
当前为
// ==UserScript==
// @name millesimisec Clock figuccio
// @description Clock millisecondi
// @match *://*/*
// @version 9.2
// @author figuccio
// @noframes
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_registerMenuCommand
// @namespace https://greasyfork.org/users/237458
// @require http://code.jquery.com/jquery-latest.js
// @require https://code.jquery.com/ui/1.12.1/jquery-ui.js
// @icon data:image/gif;base64,R0lGODlhEAAQAKECABEREe7u7v///////yH5BAEKAAIALAAAAAAQABAAAAIplI+py30Bo5wB2IvzrXDvaoFcCIBeeXaeSY4tibqxSWt2RuWRw/e+UQAAOw==
// @license MIT
// ==/UserScript==
var $ = window.jQuery;
var j = $.noConflict();
const body=document.body;
var box = document.createElement("div");
box.id = "milli";
box.title = 'trascina time';
box.setAttribute("style", "background:blue;color:red;cursor:move; font-family:sans-serif;width:310px; font-size:13pt; top:0px; line-height:21px; position:fixed; text-align:center; z-index:999999;");
document.body.appendChild(box);
j(box).draggable();
body.append(box);
function tick() {
var today = new Date();
var h = new Date().toLocaleTimeString();
var ms = new Date().getMilliseconds();
var date = new Date().toLocaleString('it', {'weekday': 'long', 'month': 'long', 'day': '2-digit','year':'numeric'});
box.innerHTML = h + ":" + ms + " "+date;
}
tick();
setInterval(tick, 70);
//mostra nascondi time
function myFunction2() {
box.style.display = ((box.style.display!='none') ? 'none' : 'block');
}
GM_registerMenuCommand("mostra/nascondi",myFunction2);
///////////////