IdleHacking - Cursor Cleanup

Keep normal text as arrow cursor while preserving pointer cursor on interactive game UI.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

Advertisement:

// ==UserScript==
// @name         IdleHacking - Cursor Cleanup
// @namespace    https://greasyfork.org/
// @version      1.02
// @description  Keep normal text as arrow cursor while preserving pointer cursor on interactive game UI.
// @match        https://www.idlehacking.com/*
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function () {
    'use strict';

    if (window.__idlehackingCursorCleanupInstalled) return;
    window.__idlehackingCursorCleanupInstalled = true;

    const STYLE_ID = 'idlehacking-cursor-cleanup-style';

    function installStyle() {
        if (document.getElementById(STYLE_ID)) return;

        const style = document.createElement('style');
        style.id = STYLE_ID;
        style.textContent = `
            /* Default everything non-editable to normal arrow */
            *:not(input):not(textarea):not(select):not(option):not(button):not(a):not([contenteditable="true"]) {
                cursor: default !important;
            }

            /* Preserve hand cursor on interactive elements */
            a,
            button,
            select,
            option,
            [role="button"],
            .panel-collapse-indicator,
            .panel-header-collapsible {
                cursor: pointer !important;
            }

            /* Keep text-entry controls behaving normally */
            input,
            textarea,
            [contenteditable="true"] {
                cursor: text !important;
            }
        `;

        document.head.appendChild(style);
    }

    function init() {
        if (!document.head) return;
        installStyle();
    }

    if (document.readyState === 'loading') {
        document.addEventListener('DOMContentLoaded', init, { once: true });
    } else {
        init();
    }

    window.__idlehackingCursorCleanupRemove = function () {
        const style = document.getElementById(STYLE_ID);
        if (style) style.remove();
        delete window.__idlehackingCursorCleanupInstalled;
        delete window.__idlehackingCursorCleanupRemove;
    };
})();