Automatic Theme Switcher

Automatically toggles between light and dark themes for KHInsider based on local time.

スクリプトをインストールするには、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         Automatic Theme Switcher
// @namespace    https://downloads.khinsider.com/
// @version      0.2
// @description  Automatically toggles between light and dark themes for KHInsider based on local time.
// @author       Inari
// @match        https://downloads.khinsider.com/*
// @grant        none
// @icon         https://cdn-icons-png.flaticon.com/512/543/543269.png
// ==/UserScript==

(function () {
    'use strict';
    if (window.location.pathname.includes('/forums')) {
        return;
    }
    const sunriseHour = 6; // 6:00 AM, change as needed
    const sunsetHour = 18; // 6:00 PM, change as needed
    const currentHour = new Date().getHours();
    const isDarkMode = currentHour >= sunsetHour || currentHour < sunriseHour;
    const url = new URL(window.location.href);
    const currentTheme = url.searchParams.get('theme');
    const desiredTheme = isDarkMode ? 'dark' : 'light';
    if (currentTheme !== desiredTheme) {
        url.searchParams.set('theme', desiredTheme);
        window.location.replace(url.toString());
    }
})();