Onch-Heure

Horloge digitale sur le coin inférieur gauche de l'écran.

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Onch-Heure
// @namespace    http://tampermonkey.net/
// @version      1
// @description  Horloge digitale sur le coin inférieur gauche de l'écran.
// @author       You
// @match        https://onche.org/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=https://www.worldtimebuddy.com/
// @grant        none
// @license      MIT
// ==/UserScript==

let contai = document.body.appendChild(document.createElement("div"));

contai.style.backgroundColor = couleurb();
contai.style.width = "4.2em";
contai.style.color = couleur();
contai.style.textAlign = "center";
contai.style.borderRadius = "3px";
contai.style.outlineWidth = "0.6px";
contai.style.fontSize = "0.8em";
contai.style.outlineColor = couleur();
contai.style.outlineStyle = "solid";
contai.style.height = "2em";
contai.style.paddingTop = "0.45em";
contai.style.position = "fixed";
contai.style.bottom = "10px";
contai.style.left = "7px";
console.log(contai);

setInterval(assignerHeure, 500);

function couleur(){

     if(window.location != "https://onche.org/"){
        switch(document.body.className){
            case "forum logged blue":
                return "#71c2fb";
            case "forum logged grey":
                return "#4a99e9";
            case "forum logged":
                return "#3a3135";
         }
     }else{
         switch(document.body.className){
           case "home forum logged blue":
                return "#71c2fb";
            case "home forum logged grey":
                return "#4a99e9";
            case "home forum logged":
                return "#3a3135";
         }
     }
}

function couleurb(){

 if(window.location != "https://onche.org/"){
        switch(document.body.className){
            case "forum logged blue":
                return "#283441";
            case "forum logged grey":
                return "#1c1e23";
            case "forum logged":
                return "#fff";
         }
     }else{
         switch(document.body.className){
           case "home forum logged blue":
                return "#283441";
            case "home forum logged grey":
                return "#1c1e23";
            case "home forum logged":
                return "#fff";
         }
     }

}

function assignerHeure(){
    const h = new Date();
    contai.innerHTML = h.getHours() + ":" + ((h.getMinutes().toString().length == 1) ? "0" + h.getMinutes() : h.getMinutes()) + ":" + ((h.getSeconds().toString().length == 1) ? "0" + h.getSeconds() : h.getSeconds());
}