Add a stopwatch to liouh picross

Stopwatch to find out how quick you are.

目前為 2024-03-16 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Add a stopwatch to liouh picross
// @namespace    guebosch
// @version      2024-03-16
// @description  Stopwatch to find out how quick you are.
// @author       guebosch
// @match        https://liouh.com/picross/
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// @icon         https://www.google.com/s2/favicons?sz=64&domain=liouh.com
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

var gblButtonClickTime;

$("body").prepend(`
    <div id="tmStopWatchBlck">
        <button id="tmStopWatchBttn">Start</button>
        <span id="tmTimeStat"> </span>
    </div>
`);

$("#tmStopWatchBttn").click(zEvent => {
    var statusNode = $("#tmTimeStat");
    var tmrButton = $(zEvent.target);

    //--- Button text is either "Start" or "Stop".
    if (tmrButton.text() === "Start") {
        // Start the timer
        tmrButton.text("Stop");
        statusNode.css("background", "lightyellow");
        gblButtonClickTime = performance.now();
        console.log("Timer started at:", gblButtonClickTime.toFixed(0), new Date());
    } else {
        // Stop the timer
        tmrButton.text("Start");
        statusNode.css("background", "lightgreen");
        var stopTime = performance.now();
        var elapsedtime = stopTime - gblButtonClickTime; // Milliseconds
        var purtyElpsdTime = (elapsedtime / 1000).toFixed(3) + " seconds";
        console.log("Timer stopped at:", stopTime.toFixed(0), new Date(), "Elapsed:", purtyElpsdTime);
        statusNode.text(purtyElpsdTime);
    }
});

GM_addStyle(`
    #tmStopWatchBttn {
        font-size: 1.2em;
        padding: 0.5ex 1em;
        width: 5em;
    }
    #tmTimeStat {
        margin-left: 1em;
        padding: 0.2ex 2ex;
        border: 1px solid lightgray;
        border-radius: 0.5ex;
    }
`);