ING Infinite Login Sessions

Infinitely extends ING login sessions by automatically clicking the session refresh button every minute.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name            ING Infinite Login Sessions
// @name:de         ING Unbegrenzte Login-Sitzungen
// @namespace       https://greasyfork.org/en/users/723211-ray/
// @version         1.0.2
// @description     Infinitely extends ING login sessions by automatically clicking the session refresh button every minute.
// @description:de  Verlängert ING Login-Sitzungen unbegrenzt indem der Aktualisierungsbutton jede Minute automatisch angeklickt wird.
// @author          -Ray-
// @match           https://banking.ing.de/app/*
// @grant           none
// @license         MIT
// ==/UserScript==

window.setInterval(function () {
    // banking.ing.de
    document.querySelector("ing-header")?.shadowRoot.querySelector("ing-session-button")?.shadowRoot.querySelector(".session-button__refresh-button")?.click();

    // wertpapiere.ing.de
    document.querySelector(".ing-sn-session-button__timer")?.click();
}, 60 * 1000);